From fb9df06c3e61ee4611929d3df9275ff23eb30bc6 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 2 Aug 2023 11:04:38 +0100 Subject: [PATCH] Add wallpaper to .config dir --- hosts/Ronin/home.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/Ronin/home.nix b/hosts/Ronin/home.nix index 39ae51ff..c1823799 100644 --- a/hosts/Ronin/home.nix +++ b/hosts/Ronin/home.nix @@ -1,4 +1,4 @@ -{ pkgs, shellConfig, ... }: +{ pkgs, shellConfig, wallpapers, ... }: let username = "elitherl"; homeDirectory = "/home/${username}"; @@ -18,4 +18,5 @@ in { }; programs.home-manager.enable = true; programs.chromium.enable = true; + xdg.configFile."wallpaper.jpg".source = wallpapers.outputs.default; }