Files
NixVM/nixos/modules/users/users.nix
2025-11-19 19:30:42 +01:00

15 lines
287 B
Nix

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