This commit is contained in:
ChaotiCryptidz 2021-12-21 00:07:05 +00:00
parent 3569994a75
commit 16ed09469a
2 changed files with 12 additions and 1 deletions

10
home/base/zsh.nix Normal file
View file

@ -0,0 +1,10 @@
{ ... }: {
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "afowler";
plugins = [ ];
};
};
}

View file

@ -1,4 +1,5 @@
{ tree, config, lib, ... }: {
{ tree, config, lib, pkgs, ... }: {
users.defaultUserShell = pkgs.zsh;
security.sudo.wheelNeedsPassword = lib.mkForce false;
imports = with tree; [