1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/services/dwm-status.nix

73 lines
1.7 KiB
Nix
Raw Normal View History

2019-08-10 16:57:19 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.dwm-status;
jsonFormat = pkgs.formats.json { };
2019-08-10 16:57:19 +02:00
features = [ "audio" "backlight" "battery" "cpu_load" "network" "time" ];
finalConfig = { inherit (cfg) order; } // cfg.extraConfig;
2019-08-10 16:57:19 +02: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;
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 {
type = jsonFormat.type;
2020-02-02 00:39:17 +01:00
default = { };
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 {
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
};
};
}