Regenerated

This commit is contained in:
2026-03-19 20:40:15 +00:00
parent a09718640d
commit 64e1cef2aa
31 changed files with 8 additions and 1511 deletions
+8 -12
View File
@@ -213,28 +213,24 @@ in
** =generated/modules/users/user.nix=
This is the default user, just search and replace henrov another name if you want to change
#+BEGIN_SRC nix :tangle generated/modules/users/user.nix :noweb tangle :mkdirp yes :eval never-html
{
config,
pkgs,
lib,
inputs,
...
}:
{ config, pkgs, lib, ... }:
let
user = import ./henrov.nix;
in
{
users.users.${user.username} = {
isNormalUser = true;
home = user.homeDirectory;
hashedPassword = user.hashedPassword;
extraGroups = [ "wheel" "networkmanager" ];
};
home-manager.users.${user.username} = {
home.stateVersion = "26.05";
home.username = user.username;
home.homeDirectory = user.homeDirectory;
};
# Ensure the user is in the necessary groups
users.users.${config.users.users.${user.username}.username} = {
extraGroups = [ "wheel" "networkmanager" ];
};
}
#+END_SRC