2019-08-10 16:57:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.dwm-status;
|
|
|
|
|
2020-11-30 03:54:55 +01:00
|
|
|
jsonFormat = pkgs.formats.json { };
|
|
|
|
|
2019-08-10 16:57:19 +02:00
|
|
|
features = [ "audio" "backlight" "battery" "cpu_load" "network" "time" ];
|
|
|
|
|
2020-11-30 03:54:55 +01:00
|
|
|
finalConfig = { inherit (cfg) order; } // cfg.extraConfig;
|
2019-08-10 16:57:19 +02:00
|
|
|
|
2020-11-30 03:54:55 +01:00
|
|
|
configFile = jsonFormat.generate "dwm-status.json" finalConfig;
|
2019-08-10 16:57:19 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-08-10 16:57:19 +02:00
|
|
|
options = {
|
|
|
|
services.dwm-status = {
|
|
|
|
enable = mkEnableOption "dwm-status user service";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.dwm-status;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.dwm-status";
|
2019-08-10 16:57:19 +02:00
|
|
|
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 {
|
2020-11-30 03:54:55 +01:00
|
|
|
type = jsonFormat.type;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2019-08-10 16:57:19 +02:00
|
|
|
{
|
|
|
|
separator = "#";
|
|
|
|
|
|
|
|
battery = {
|
|
|
|
notifier_levels = [ 2 5 10 15 20 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
time = {
|
|
|
|
format = "%H:%M";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = "Extra config of dwm-status.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.dwm-status" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2019-08-10 16:57:19 +02:00
|
|
|
systemd.user.services.dwm-status = {
|
|
|
|
Unit = {
|
|
|
|
Description = "DWM status service";
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
2019-08-10 16:57:19 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Service = { ExecStart = "${cfg.package}/bin/dwm-status ${configFile}"; };
|
2019-08-10 16:57:19 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|