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