19 lines
336 B
Nix
19 lines
336 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
# enable zsh
|
|
programs.zsh.enable = true;
|
|
|
|
# user simon
|
|
users.users.simon = {
|
|
isNormalUser = true;
|
|
description = "Simon Cornet";
|
|
initialPassword = "changeme";
|
|
shell = pkgs.zsh;
|
|
extraGroups = [
|
|
"libvirtd"
|
|
"networkmanager"
|
|
"wheel"
|
|
];
|
|
};
|
|
}
|