nixcfg/userModules/dustin/default.nix

16 lines
313 B
Nix
Raw Permalink Normal View History

{
config,
lib,
...
}: {
config = lib.mkIf config.ar.users.dustin.enable {
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;
};
};
}