15 lines
287 B
Nix
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;
|
|
};
|
|
}
|