Add zsh!
This commit is contained in:
parent
3569994a75
commit
16ed09469a
10
home/base/zsh.nix
Normal file
10
home/base/zsh.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }: {
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
theme = "afowler";
|
||||
plugins = [ ];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
{ tree, config, lib, ... }: {
|
||||
{ tree, config, lib, pkgs, ... }: {
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
security.sudo.wheelNeedsPassword = lib.mkForce false;
|
||||
|
||||
imports = with tree; [
|
||||
|
|
Loading…
Reference in a new issue