Switch to zsh.

This commit is contained in:
Tom Alexander
2024-12-23 11:14:18 -05:00
parent 9c0f3ce601
commit 7decd40844
2 changed files with 18 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
./zfs.nix ./zfs.nix
./network.nix ./network.nix
./roles/firewall ./roles/firewall
./roles/zsh
./roles/graphics ./roles/graphics
./roles/sound ./roles/sound
./roles/sway ./roles/sway

View File

@@ -0,0 +1,17 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
zsh
];
users.users.talexander.shell = pkgs.zsh;
environment.shells = with pkgs; [ zsh ];
}