Add danio user

This commit is contained in:
Daniel Lovbrotte Olsen 2021-12-18 22:04:28 +01:00 committed by System administrator
parent b7bf6f3727
commit 70aa493f43
1 changed files with 9 additions and 0 deletions

9
users/danio.nix Normal file
View File

@ -0,0 +1,9 @@
{pkgs, ...}:
{
users.users.danio = {
isNormalUser = true;
#extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.zsh;
};
}