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