nixcfg/nixosModules/users/dustin/default.nix

23 lines
478 B
Nix
Raw Normal View History

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