1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-15 13:31:07 +01:00

treewide: implement auto importing for modules

Reduce maintenance burden and increase efficiency by automatically
importing modules following a specific convention.

Co-authored-by: awwpotato <awwpotato@voidq.com>
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-06-20 14:39:55 -05:00
parent fefeb0e928
commit 4fca600cb1
461 changed files with 72 additions and 474 deletions

View file

@ -1,85 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkOption types;
cfg = config.services.dwm-status;
jsonFormat = pkgs.formats.json { };
features = [
"audio"
"backlight"
"battery"
"cpu_load"
"network"
"time"
];
finalConfig = {
inherit (cfg) order;
} // cfg.extraConfig;
configFile = jsonFormat.generate "dwm-status.json" finalConfig;
in
{
options = {
services.dwm-status = {
enable = lib.mkEnableOption "dwm-status user service";
package = lib.mkPackageOption pkgs "dwm-status" {
example = "pkgs.dwm-status.override { enableAlsaUtils = false; }";
};
order = mkOption {
type = types.listOf (types.enum features);
description = "List of enabled features in order.";
};
extraConfig = mkOption {
type = jsonFormat.type;
default = { };
example = lib.literalExpression ''
{
separator = "#";
battery = {
notifier_levels = [ 2 5 10 15 20 ];
};
time = {
format = "%H:%M";
};
}
'';
description = "Extra config of dwm-status.";
};
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.dwm-status" pkgs lib.platforms.linux)
];
systemd.user.services.dwm-status = {
Unit = {
Description = "DWM status service";
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${cfg.package}/bin/dwm-status ${configFile} --quiet";
};
};
};
}