From 16ed09469a9c6e434474c5db5334e769fdd7f018 Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Tue, 21 Dec 2021 00:07:05 +0000 Subject: [PATCH] Add zsh! --- home/base/zsh.nix | 10 ++++++++++ profiles/base/access.nix | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 home/base/zsh.nix diff --git a/home/base/zsh.nix b/home/base/zsh.nix new file mode 100644 index 0000000..61ba7af --- /dev/null +++ b/home/base/zsh.nix @@ -0,0 +1,10 @@ +{ ... }: { + programs.zsh = { + enable = true; + oh-my-zsh = { + enable = true; + theme = "afowler"; + plugins = [ ]; + }; + }; +} diff --git a/profiles/base/access.nix b/profiles/base/access.nix index 0e2d3bb..135db3b 100644 --- a/profiles/base/access.nix +++ b/profiles/base/access.nix @@ -1,4 +1,5 @@ -{ tree, config, lib, ... }: { +{ tree, config, lib, pkgs, ... }: { + users.defaultUserShell = pkgs.zsh; security.sudo.wheelNeedsPassword = lib.mkForce false; imports = with tree; [