Former-commit-id: 849eb5dd11
This commit is contained in:
Hadi
2024-08-19 00:38:27 +02:00
parent 0ed5d1cf04
commit 8876aae16c
14 changed files with 78 additions and 82 deletions

7
hosts/modules/users.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, ... }: {
users.users.${config.var.username} = {
isNormalUser = true;
description = "${config.var.username} account";
extraGroups = [ "networkmanager" "wheel" ];
};
}