Add wallpaper to .config dir

This commit is contained in:
Evie Litherland-Smith 2023-08-02 11:04:38 +01:00
parent eed323b3e7
commit fb9df06c3e

View file

@ -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;
}