nixcfg/userModules/dustin/default.nix

22 lines
462 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.users.dustin.enable {
home-manager.users.dustin =
lib.attrsets.optionalAttrs
config.ar.users.dustin.manageHome
(import ../../homes/dustin);
users.users.dustin = {
description = "Dustin Raffauf";
extraGroups = config.ar.users.defaultGroups;
hashedPassword = config.ar.users.dustin.password;
isNormalUser = true;
2024-06-18 18:50:28 -04:00
uid = 1001;
};
};
}