New Nix config
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
settings = import ../settings.nix;
|
||||
in
|
||||
{
|
||||
# Groups
|
||||
users.groups.plugdev = {
|
||||
gid = 69420;
|
||||
};
|
||||
users.groups.plugdev.gid = 69420;
|
||||
|
||||
# User Accounts
|
||||
users.users.atridad = {
|
||||
users.users.${settings.username} = {
|
||||
isNormalUser = true;
|
||||
description = "Atridad";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "plugdev" ];
|
||||
description = settings.userDescription;
|
||||
extraGroups = settings.userGroups;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user