yeet
This commit is contained in:
14
nixos/modules/users/users.nix
Normal file
14
nixos/modules/users/users.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./zsh.nix
|
||||
];
|
||||
# Define user account and dont forget to set a password with 'passwd'
|
||||
users.users.cerberus = {
|
||||
isNormalUser = true;
|
||||
description = "cerberus";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user