nixcfg/userModules/dustin/default.nix

19 lines
386 B
Nix
Raw Normal View History

{
config,
lib,
self,
...
}: {
config = lib.mkIf config.ar.users.dustin.enable {
2024-07-09 11:36:22 -04:00
home-manager.users.dustin = self.homeManagerModules.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;
};
};
}