hosts/solaire: set wallpaper in solaire itself, not hosts/default.nix

This commit is contained in:
Anthony Rodriguez 2024-10-22 14:04:01 +02:00
parent 2d295004d0
commit c233c1a420
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 4 additions and 1 deletions

View file

@ -25,7 +25,7 @@ in {
inherit specialArgs; inherit specialArgs;
modules = [ modules = [
./solaire ./solaire
self.nixosModules.style self.nixosModules.theme
]; ];
}; };
} }

View file

@ -1,5 +1,6 @@
{ {
self, self,
pkgs,
specialArgs, specialArgs,
... ...
}: let }: let
@ -26,6 +27,8 @@ in {
extraSpecialArgs = specialArgs; extraSpecialArgs = specialArgs;
}; };
theme.wallpaper = ../../wallpapers/lucy-edgerunners-wallpaper.jpg;
networking.hostName = "solaire"; networking.hostName = "solaire";
environment.variables.FLAKE = "/home/nezia/.dotfiles"; environment.variables.FLAKE = "/home/nezia/.dotfiles";
} }