blob: c2db9934a51cc4139feb0a3478f519fd797fbabf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, pkgs, ... }:
{
users.users = {
mun = {
isNormalUser = true;
extraGroups = [ "wheel" "bluetooth" "networkmanager" "kvm" "nixos" ];
packages = with pkgs; [ tree ];
shell = pkgs.zsh;
};
};
}
|