grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / misc / dwm-status.nix
blob927561270a7951671a5c6d3f43b4e18175bd64a2
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.services.dwm-status;
5   order = lib.concatMapStringsSep "," (feature: ''"${feature}"'') cfg.order;
7   configFile = pkgs.writeText "dwm-status.toml" ''
8     order = [${order}]
10     ${cfg.extraConfig}
11   '';
16   ###### interface
18   options = {
20     services.dwm-status = {
22       enable = lib.mkEnableOption "dwm-status user service";
24       package = lib.mkPackageOption pkgs "dwm-status" {
25         example = "dwm-status.override { enableAlsaUtils = false; }";
26       };
28       order = lib.mkOption {
29         type = lib.types.listOf (lib.types.enum [ "audio" "backlight" "battery" "cpu_load" "network" "time" ]);
30         description = ''
31           List of enabled features in order.
32         '';
33       };
35       extraConfig = lib.mkOption {
36         type = lib.types.lines;
37         default = "";
38         description = ''
39           Extra config in TOML format.
40         '';
41       };
43     };
45   };
48   ###### implementation
50   config = lib.mkIf cfg.enable {
52     services.upower.enable = lib.elem "battery" cfg.order;
54     systemd.user.services.dwm-status = {
55       description = "Highly performant and configurable DWM status service";
56       wantedBy = [ "graphical-session.target" ];
57       partOf = [ "graphical-session.target" ];
59       serviceConfig.ExecStart = "${cfg.package}/bin/dwm-status ${configFile}";
60     };
62   };