From e96b840146b85d9f7809142b092a3eda9f03c192 Mon Sep 17 00:00:00 2001 From: poslop Date: Fri, 7 Nov 2025 13:52:07 -0600 Subject: [PATCH] moved to core and removed duplicate ssh --- modules/core/default.nix | 2 ++ modules/{home => core}/git.nix | 0 modules/{home => core}/zsh/.zshrc | 0 modules/{home => core}/zsh/default.nix | 0 modules/{home => core}/zsh/zsh.nix | 0 modules/home/default.nix | 2 -- modules/home/ssh.nix | 6 ------ 7 files changed, 2 insertions(+), 8 deletions(-) rename modules/{home => core}/git.nix (100%) rename modules/{home => core}/zsh/.zshrc (100%) rename modules/{home => core}/zsh/default.nix (100%) rename modules/{home => core}/zsh/zsh.nix (100%) delete mode 100644 modules/home/ssh.nix diff --git a/modules/core/default.nix b/modules/core/default.nix index 91bf8a5..f021958 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -1,5 +1,7 @@ { imports = [ + ./zsh + ./git.nix ./fonts.nix ./hjem.nix ./network.nix diff --git a/modules/home/git.nix b/modules/core/git.nix similarity index 100% rename from modules/home/git.nix rename to modules/core/git.nix diff --git a/modules/home/zsh/.zshrc b/modules/core/zsh/.zshrc similarity index 100% rename from modules/home/zsh/.zshrc rename to modules/core/zsh/.zshrc diff --git a/modules/home/zsh/default.nix b/modules/core/zsh/default.nix similarity index 100% rename from modules/home/zsh/default.nix rename to modules/core/zsh/default.nix diff --git a/modules/home/zsh/zsh.nix b/modules/core/zsh/zsh.nix similarity index 100% rename from modules/home/zsh/zsh.nix rename to modules/core/zsh/zsh.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index 90c2fb3..7968ef3 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,8 +1,6 @@ { imports = [ ./hyprland - ./zsh - ./git.nix ./packages.nix ]; } diff --git a/modules/home/ssh.nix b/modules/home/ssh.nix deleted file mode 100644 index 7d6e457..0000000 --- a/modules/home/ssh.nix +++ /dev/null @@ -1,6 +0,0 @@ -_: -{ - services.openssh = { - enable = true; - }; -}