1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00
home-manager/modules/services/volnoti.nix
2021-07-28 15:39:29 -04:00

44 lines
919 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.volnoti;
in {
meta.maintainers = [ maintainers.imalison ];
options = {
services.volnoti = {
enable = mkEnableOption "Volnoti volume HUD daemon";
package = mkOption {
type = types.package;
default = pkgs.volnoti;
defaultText = literalExample "pkgs.volnoti";
description = ''
Package containing the <command>volnoti</command> program.
'';
};
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.volnoti" pkgs
lib.platforms.linux)
];
home.packages = [ cfg.package ];
systemd.user.services.volnoti = {
Unit = { Description = "volnoti"; };
Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { ExecStart = "${pkgs.volnoti}/bin/volnoti -v -n"; };
};
};
}