From 36d5e995f22cbbcea41bc89fca7eddc6e862a21a Mon Sep 17 00:00:00 2001 From: Henri Dohmen Date: Sat, 31 May 2025 00:23:59 +0200 Subject: [PATCH] fixes --- host/roam/default.nix | 2 +- {mod/hm => mod-hm}/default.nix | 0 {mod/hm => mod-hm}/unison.nix | 0 mod/default.nix | 3 --- pc/home-manager.nix | 5 ++++- 5 files changed, 5 insertions(+), 5 deletions(-) rename {mod/hm => mod-hm}/default.nix (100%) rename {mod/hm => mod-hm}/unison.nix (100%) diff --git a/host/roam/default.nix b/host/roam/default.nix index 6de3ba0..dc8b1b6 100644 --- a/host/roam/default.nix +++ b/host/roam/default.nix @@ -5,7 +5,7 @@ imports = [ ./hardware-configuration.nix ./networking.nix - ./secruity.nix + ./security.nix ./services.nix ./wireguard.nix ]; diff --git a/mod/hm/default.nix b/mod-hm/default.nix similarity index 100% rename from mod/hm/default.nix rename to mod-hm/default.nix diff --git a/mod/hm/unison.nix b/mod-hm/unison.nix similarity index 100% rename from mod/hm/unison.nix rename to mod-hm/unison.nix diff --git a/mod/default.nix b/mod/default.nix index 6f66a62..7437af2 100644 --- a/mod/default.nix +++ b/mod/default.nix @@ -1,7 +1,4 @@ { ... }: { imports = [ ]; - home = { - imports = [ ./hm ]; - }; } diff --git a/pc/home-manager.nix b/pc/home-manager.nix index 701a188..8c62aa9 100644 --- a/pc/home-manager.nix +++ b/pc/home-manager.nix @@ -24,6 +24,9 @@ ]; config = { - home.home.stateVersion = config.system.stateVersion; + home = { + home.stateVersion = config.system.stateVersion; + imports = [ ../mod-hm ]; + }; }; }