split shell config to file and make shell user default
This commit is contained in:
parent
653ef5b48b
commit
077b1f7083
2 changed files with 7 additions and 3 deletions
6
nixos/shell.nix
Normal file
6
nixos/shell.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.shells = with pkgs; [ zsh ];
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue