13 lines
276 B
Nix
13 lines
276 B
Nix
({ pkgs, ... }: {
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
environment = {
|
|
shells = with pkgs; [ bash zsh fish ];
|
|
loginShell = pkgs.zsh;
|
|
systemPath = [ "/opt/homebrew/bin" ];
|
|
pathsToLink = [ "/Applications" ];
|
|
};
|
|
|
|
users.users.tobi.shell = pkgs.zshInteractive;
|
|
})
|