This commit is contained in:
Henri Dohmen 2025-05-31 00:23:59 +02:00
parent fb70bd789e
commit 36d5e995f2
5 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./networking.nix ./networking.nix
./secruity.nix ./security.nix
./services.nix ./services.nix
./wireguard.nix ./wireguard.nix
]; ];

View file

@ -1,7 +1,4 @@
{ ... }: { ... }:
{ {
imports = [ ]; imports = [ ];
home = {
imports = [ ./hm ];
};
} }

View file

@ -24,6 +24,9 @@
]; ];
config = { config = {
home.home.stateVersion = config.system.stateVersion; home = {
home.stateVersion = config.system.stateVersion;
imports = [ ../mod-hm ];
};
}; };
} }