19 lines
313 B
Nix
19 lines
313 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Groups
|
|
users.groups.plugdev = {
|
|
gid = 69420;
|
|
};
|
|
|
|
# User Accounts
|
|
users.users.atridad = {
|
|
isNormalUser = true;
|
|
description = "Atridad";
|
|
extraGroups = [ "networkmanager" "wheel" "docker" "plugdev" ];
|
|
packages = with pkgs; [
|
|
thunderbird
|
|
];
|
|
};
|
|
}
|