This commit is contained in:
Spectre 2024-06-07 02:13:22 +02:00
parent 20a6964894
commit c0f3e77000
2 changed files with 6 additions and 2 deletions

View file

@ -26,6 +26,8 @@
self, self,
nixpkgs, nixpkgs,
impermanence, impermanence,
home-manager,
sops-nix,
... ...
} @ inputs: let } @ inputs: let
inherit (self) outputs; inherit (self) outputs;
@ -50,6 +52,8 @@
./hosts/${host}/configuration.nix ./hosts/${host}/configuration.nix
./hosts/${host}/hardware-configuration.nix ./hosts/${host}/hardware-configuration.nix
impermanence.nixosModule impermanence.nixosModule
home-manager.nixosModule
sops-nix.nixosModules.sops
]; ];
}; };
in { in {

View file

@ -17,9 +17,9 @@
hm = import ../home; hm = import ../home;
in { in {
${conf.user} = { ${conf.user} = {
imports = hm.user; # imports = hm.user;
home.username = conf.user; home.username = conf.user;
home.homeDirectory = conf.home; home.stateVersion = "24.11";
}; };
}; };