Enhanced the configuration files to support multi-user management by introducing user options for multiple applications, including art, gaming, multimedia, and development tools. Updated existing modules to utilize these new user options, improving flexibility and maintainability in user package installations.
106 lines
3.1 KiB
Nix
106 lines
3.1 KiB
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
options.my.scripts = lib.mkOption {
|
|
type = lib.types.attrsOf (
|
|
lib.types.submodule {
|
|
options = {
|
|
enable = lib.mkEnableOption "Whether to enable this script";
|
|
install = lib.mkEnableOption "Whether to install the script package";
|
|
service = lib.mkEnableOption "Whether to enable the script service";
|
|
users = lib.mkOption {
|
|
type = lib.types.either lib.types.str (lib.types.listOf lib.types.str);
|
|
default = config.my.toggleUsers.scripts;
|
|
description = "Users to install this script for";
|
|
};
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Name of the script.";
|
|
};
|
|
timer = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "*:0";
|
|
description = "Systemd timer schedule.";
|
|
};
|
|
description = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Description of the service.";
|
|
};
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
description = "Package containing the executable script.";
|
|
};
|
|
};
|
|
}
|
|
);
|
|
default = { };
|
|
description = "Configuration for multiple scripts.";
|
|
};
|
|
config = lib.mkIf (lib.any (s: s.enable) (lib.attrValues config.my.scripts)) {
|
|
users.users =
|
|
let
|
|
scriptList =
|
|
config.my.scripts
|
|
|> lib.mapAttrsToList (_name: script: lib.optional (script.enable && script.install) script)
|
|
|> lib.flatten;
|
|
userMap = lib.foldl' (
|
|
acc: script:
|
|
let
|
|
users = inputs.self.lib.normalizeUsers script.users;
|
|
in
|
|
lib.foldl' (
|
|
acc': user:
|
|
acc'
|
|
// {
|
|
${user} = (acc'.${user} or [ ]) ++ [ script.package ];
|
|
}
|
|
) acc users
|
|
) { } scriptList;
|
|
in
|
|
lib.mkMerge (
|
|
lib.mapAttrsToList (user: packages: inputs.self.lib.mkUserPackages lib user packages) userMap
|
|
);
|
|
systemd.user.services =
|
|
config.my.scripts
|
|
|> lib.mapAttrs' (
|
|
_name: script:
|
|
lib.nameValuePair "${script.name}" (
|
|
lib.mkIf (script.enable && script.service) {
|
|
restartIfChanged = true;
|
|
inherit (script) description;
|
|
wantedBy = [ "default.target" ];
|
|
path = [
|
|
pkgs.nix
|
|
script.package
|
|
];
|
|
serviceConfig = {
|
|
Restart = "on-failure";
|
|
RestartSec = 30;
|
|
ExecStart = "${script.package}/bin/${script.name}";
|
|
};
|
|
}
|
|
)
|
|
);
|
|
systemd.user.timers =
|
|
config.my.scripts
|
|
|> lib.mapAttrs' (
|
|
_name: script:
|
|
lib.nameValuePair "${script.name}" (
|
|
lib.mkIf (script.enable && script.service) {
|
|
enable = true;
|
|
inherit (script) description;
|
|
wantedBy = [ "timers.target" ];
|
|
timerConfig = {
|
|
OnCalendar = script.timer;
|
|
};
|
|
}
|
|
)
|
|
);
|
|
};
|
|
}
|