Add gitwatch

This commit is contained in:
2026-01-05 06:38:17 +01:00
parent 9d5b8eff9c
commit e48e85efca
8 changed files with 100 additions and 23 deletions

View File

@@ -53,27 +53,21 @@
nixosConfigurations.lillypc = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
inherit host;
inherit username;
inherit prettyUsername;
inherit inputs host username prettyUsername;
};
modules = [
./configuration.nix
nix-flatpak.nixosModules.nix-flatpak
catppuccin.nixosModules.catppuccin
home-manager.nixosModules.home-manager
{
({ config, ... }:{
home-manager = {
useUserPackages = true;
useGlobalPkgs = false;
backupFileExtension = "backup";
extraSpecialArgs = {
inherit inputs;
inherit host;
inherit username;
inherit prettyUsername;
inherit email;
inherit inputs host username prettyUsername email;
nixosConfig = config;
};
users.${username} = {
imports = [
@@ -87,7 +81,7 @@
};
};
};
}
})
];
};
};