1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/modules/services/dwm-status.nix
Austin Horstman 82ee14ff60
treewide: remove with lib (#6871)
Remove from services.
2025-04-21 11:00:59 -05:00

89 lines
1.8 KiB
Nix

{
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 = mkOption {
type = types.package;
default = pkgs.dwm-status;
defaultText = lib.literalExpression "pkgs.dwm-status";
example = "pkgs.dwm-status.override { enableAlsaUtils = false; }";
description = "Which dwm-status package to use.";
};
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}";
};
};
};
}