From 778fcb1b9df47c22678bf8269ed3d0612dcd1e5b Mon Sep 17 00:00:00 2001 From: materus Date: Sat, 6 Apr 2024 15:20:44 +0200 Subject: [PATCH] os-config: add zsh to "environment.shells" --- configurations/profile/os/shell/zsh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/configurations/profile/os/shell/zsh.nix b/configurations/profile/os/shell/zsh.nix index a5e8807..5d5ecb2 100644 --- a/configurations/profile/os/shell/zsh.nix +++ b/configurations/profile/os/shell/zsh.nix @@ -6,6 +6,7 @@ in options.materus.profile.zsh.enable = materusArg.pkgs.lib.mkBoolOpt true "Enable materus system zsh config"; config = lib.mkIf cfg.enable { users.defaultUserShell = pkgs.zsh; + environment.shells = [ pkgs.zsh ]; programs.zsh = { enable = true; enableGlobalCompInit=false;