2024-06-11 16:24:12 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-06-28 19:36:23 -04:00
|
|
|
lib,
|
|
|
|
pkgs,
|
2024-06-11 16:24:12 -04:00
|
|
|
...
|
|
|
|
}: {
|
2024-06-26 22:13:02 -04:00
|
|
|
config = lib.mkIf config.ar.users.dustin.enable {
|
2024-06-28 19:36:23 -04:00
|
|
|
home-manager.users.dustin =
|
|
|
|
if config.ar.users.dustin.manageHome
|
|
|
|
then import ../../../homes/dustin
|
|
|
|
else {};
|
|
|
|
|
2024-06-11 16:24:12 -04:00
|
|
|
users.users.dustin = {
|
|
|
|
description = "Dustin Raffauf";
|
|
|
|
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "video"];
|
2024-06-26 22:13:02 -04:00
|
|
|
hashedPassword = config.ar.users.dustin.password;
|
2024-06-28 19:36:23 -04:00
|
|
|
|
2024-06-11 16:24:12 -04:00
|
|
|
isNormalUser = true;
|
2024-06-18 18:50:28 -04:00
|
|
|
uid = 1001;
|
2024-06-11 16:24:12 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|