blob: 5b84f9a65bd0e59d70e02bc68c9870f63b25a80c (
plain)
1
2
3
4
5
6
7
8
|
{pkgs, ...}: {
users.groups.ssh-keys = {};
users.users.mun = {
isNormalUser = true;
extraGroups = ["wheel" "bluetooth" "networkmanager" "kvm" "nixos" "ssh-keys"];
shell = pkgs.zsh;
};
}
|