2019-08-10 16:57:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.dwm-status;
|
|
|
|
|
|
|
|
features = [ "audio" "backlight" "battery" "cpu_load" "network" "time" ];
|
|
|
|
|
|
|
|
configText = builtins.toJSON ({ inherit (cfg) order; } // cfg.extraConfig);
|
|
|
|
|
|
|
|
configFile = pkgs.writeText "dwm-status.json" configText;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.dwm-status = {
|
|
|
|
enable = mkEnableOption "dwm-status user service";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.dwm-status;
|
2019-08-28 00:12:28 +02:00
|
|
|
defaultText = literalExample "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 {
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
separator = "#";
|
|
|
|
|
|
|
|
battery = {
|
|
|
|
notifier_levels = [ 2 5 10 15 20 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
time = {
|
|
|
|
format = "%H:%M";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = "Extra config of dwm-status.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
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}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|