mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
23 lines
478 B
Nix
23 lines
478 B
Nix
{
|
|
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;
|
|
uid = 1001;
|
|
};
|
|
};
|
|
}
|