Switch to zsh.

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

View File

@ -22,6 +22,7 @@
./zfs.nix
./network.nix
./roles/firewall
./roles/zsh
./roles/graphics
./roles/sound
./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 ];
}