nixcfg/nixosModules/users/morgan/default.nix

18 lines
355 B
Nix
Raw Normal View History

2024-06-14 13:39:01 -04:00
{
inputs,
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.ar.users.morgan.enable {
2024-06-14 13:39:01 -04:00
users.users.morgan = {
description = "Morgan Tamayo";
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "video"];
hashedPassword = config.ar.users.morgan.password;
2024-06-14 13:39:01 -04:00
isNormalUser = true;
2024-06-18 18:50:28 -04:00
uid = 1002;
2024-06-14 13:39:01 -04:00
};
};
}