14 lines
325 B
Nix
14 lines
325 B
Nix
{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; };
|
|
}
|