diff --git a/modules/core/default.nix b/modules/core/default.nix index f108367..e9df2b8 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -17,5 +17,6 @@ ./stylix.nix ./system.nix ./user.nix + ./zsh.nix ]; } diff --git a/modules/core/zsh.nix b/modules/core/zsh.nix new file mode 100644 index 0000000..a9322fc --- /dev/null +++ b/modules/core/zsh.nix @@ -0,0 +1,14 @@ +{ + config, + lib, + ... +}: +with lib; +let + zshCfg = config.modules.zsh; +in +{ + config = mkIf zshCfg.enable { + programs.zsh.enable = true; + }; +} \ No newline at end of file