This commit is contained in:
Lilith 2025-02-27 02:23:32 +01:00
parent 2fc664604d
commit a71a3b5593
Signed by: lilith
GPG key ID: 8712A0F317C37175
2 changed files with 8 additions and 15 deletions

View file

@ -1,6 +1,13 @@
{ home-manager, ... }: {
imports = [
./users.nix
home-manager.nixosModules.home-manager
];
home-manager.users."lilith" = {
imports = [
./gpg.nix
];
home.username = "lilith";
home.stateVersion = "24.11";
};
}

View file

@ -1,14 +0,0 @@
{ ... }: {
home-manager.users."lilith" = {
imports = [
./gpg.nix
];
home.username = "lilith";
home.stateVersion = "24.11";
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
}