This commit is contained in:
2025-11-19 19:30:42 +01:00
parent 710e39cc17
commit bc173875ae
7 changed files with 181 additions and 0 deletions

View 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;
};
}