refactor3

This commit is contained in:
Lilith 2025-03-12 16:50:15 +01:00
parent f012a7d409
commit f94de157a6
Signed by: lilith
GPG key ID: 8712A0F317C37175
2 changed files with 3 additions and 4 deletions

14
home/default.nix Normal file
View file

@ -0,0 +1,14 @@
{home-manager, lib, ...}: {
imports [ home-manager.nixosModules.home-manager ];
home-manager.backupFileExtension = "bak";
home-manager.users."lilith" = {
imports = [
./lilith
];
home.username = "lilith";
home.stateVersion = "24.11";
};
home-manager.extraSpecialArgs = { inherit inputs; };
}