This commit is contained in:
Spectre 2024-06-07 17:41:17 +02:00
parent f2dc32ac0c
commit ed93f5ec7e
3 changed files with 6 additions and 1 deletions

View file

@ -13,7 +13,7 @@
./persist.nix ./persist.nix
./playerctld.nix ./playerctld.nix
./rofi.nix ./rofi.nix
./sops.nix # ./sops.nix
./stylix.nix ./stylix.nix
]; ];
} }

View file

@ -14,6 +14,7 @@
./steam.nix ./steam.nix
./stylix.nix ./stylix.nix
./wayland.nix ./wayland.nix
./zsh.nix
]; ];
system.stateVersion = "24.11"; system.stateVersion = "24.11";

4
system/zsh.nix Normal file
View file

@ -0,0 +1,4 @@
{pkgs, ...}: {
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
}