Add user felixalb

This commit is contained in:
System administrator 2022-09-08 17:44:20 +02:00
parent 344530e810
commit d0cc8d4a3c
1 changed files with 8 additions and 0 deletions

8
users/felixalb.nix Normal file
View File

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