wallpaper

This commit is contained in:
Lilith 2025-03-15 01:00:04 +01:00 committed by Lilith
parent a32cde45c1
commit 9a16acca1b
Signed by: lilith
GPG key ID: 8712A0F317C37175
3 changed files with 36 additions and 41 deletions

View file

@ -1,15 +1,15 @@
{ home-manager, specialArgs, ... }: {
{ home-manager, specialArgs, ... }:
{
imports = [ home-manager.nixosModules.home-manager ];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "bak";
home-manager.users."lilith" = {
imports = [
./lilith
];
imports = [ ./lilith ];
home.username = "lilith";
home.stateVersion = "24.11";
};
home-manager.extraSpecialArgs = specialArgs;
home-manager.extraSpecialArgs = specialArgs;
}