1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:03:53 +00:00
ultima/modules/nixos/misc/users/default.nix

53 lines
862 B
Nix
Raw Normal View History

{
x,
pkgs,
lib,
config,
...
}:
2024-11-21 09:24:15 +00:00
with lib;
2024-12-09 01:15:55 +00:00
with x;
let
cfg = config.module.misc.users;
in
{
2024-11-21 09:24:15 +00:00
options = {
module.misc.users = {
2024-12-09 01:15:55 +00:00
enable = mkBool;
shell = mkOpt.str;
2024-11-21 09:24:15 +00:00
};
};
config = mkIf cfg.enable {
programs.${cfg.shell} = True;
users =
let
grp = [
"video"
"audio"
"networkmanager"
"wheel"
"docker"
"podman"
"libvirtd"
"terraria"
"transmission"
];
in
{
# USERS SETS
defaultUserShell = pkgs.${cfg.shell};
groups.${userName} = { };
users = {
${userName} = {
uid = 1000;
home = "/home/${userName}";
createHome = true;
isNormalUser = true;
extraGroups = grp;
};
2024-12-03 14:20:37 +00:00
};
2024-11-21 09:24:15 +00:00
};
};
}