1755718461

This commit is contained in:
2025-08-20 13:34:21 -06:00
parent 8037263187
commit 63c07f9548
8 changed files with 15 additions and 38 deletions

View File

@@ -1,18 +1,18 @@
{ config, pkgs, ... }:
{
# Define groups
# Groups
users.groups.plugdev = {
gid = 69420;
};
# Define a user account. Don't forget to set a password with 'passwd'.
# User Accounts
users.users.atridad = {
isNormalUser = true;
description = "Atridad";
extraGroups = [ "networkmanager" "wheel" "docker" "plugdev" ];
packages = with pkgs; [
# thunderbird
thunderbird
];
};
}