diff options
author | Franck Cuny <franck@fcuny.net> | 2023-07-06 11:17:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-07-06 11:17:36 -0700 |
commit | 89c8794a7347ec66e97fa360e0cc7365fc8ca2a2 (patch) | |
tree | 309c3c61360f28ba6427bd22875041e0e8d1d780 | |
parent | add x509-info back to the list of tools (diff) | |
download | world-89c8794a7347ec66e97fa360e0cc7365fc8ca2a2.tar.gz |
enable zsh for all profiles
-rw-r--r-- | profiles/default.nix | 1 | ||||
-rw-r--r-- | profiles/workstation.nix | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/profiles/default.nix b/profiles/default.nix index 2f2ff9b..814bcdf 100644 --- a/profiles/default.nix +++ b/profiles/default.nix @@ -137,6 +137,7 @@ ]; programs.bcc.enable = true; + programs.zsh.enable = true; # Show installed packages (https://www.reddit.com/r/NixOS/comments/fsummx/comment/fm45htj/?utm_source=share&utm_medium=web2x&context=3) environment.etc."installed-packages".text = diff --git a/profiles/workstation.nix b/profiles/workstation.nix index c21b934..5451199 100644 --- a/profiles/workstation.nix +++ b/profiles/workstation.nix @@ -87,8 +87,6 @@ [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-wlr ]; }; - programs.zsh.enable = true; - programs.sway = { enable = true; wrapperFeatures.gtk = true; |