nixfiles/profiles/base/access.nix
ChaotiCryptidz 16ed09469a Add zsh!
2021-12-21 00:07:05 +00:00

9 lines
176 B
Nix

{ tree, config, lib, pkgs, ... }: {
users.defaultUserShell = pkgs.zsh;
security.sudo.wheelNeedsPassword = lib.mkForce false;
imports = with tree; [
home.base
];
}