Added nix files

This commit is contained in:
2025-03-20 15:26:29 +00:00
parent bf0779ae97
commit 5965d43eff
9 changed files with 234 additions and 0 deletions

15
modules/user.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
users.users."luke-else" = {
isNormalUser = true;
home = "/home/luke-else";
shell = pkgs.bash;
extraGroups = [ "wheel" "networkmanager" "docker" ];
};
security.sudo = {
enable = true;
wheelNeedsPassword = true;
};
}