diff --git a/common/default.nix b/common/default.nix index 70050d0..bc3cc10 100644 --- a/common/default.nix +++ b/common/default.nix @@ -8,6 +8,5 @@ ./nixpkgs.nix ./openssh.nix ./security.nix - ./zsh.nix ]; } \ No newline at end of file diff --git a/common/users/qenya.nix b/common/users/qenya.nix index 127d6cc..e9d11ad 100644 --- a/common/users/qenya.nix +++ b/common/users/qenya.nix @@ -9,4 +9,6 @@ in { openssh.authorizedKeys.keys = keys.users.qenya; uid = 1001; }; + + programs.zsh.enable = true; } diff --git a/common/zsh.nix b/common/zsh.nix deleted file mode 100644 index 228a5cd..0000000 --- a/common/zsh.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ config, lib, pkgs,... }: - -{ - programs.zsh.enable = true; -}