1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-06 00:51:04 +01:00
home-manager/modules/services/volnoti.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

57 lines
982 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.volnoti;
in
{
meta.maintainers = with maintainers; [
imalison
tomodachi94
];
options = {
services.volnoti = {
enable = mkEnableOption "Volnoti volume HUD daemon";
package = mkOption {
type = types.package;
default = pkgs.volnoti;
defaultText = literalExpression "pkgs.volnoti";
description = ''
Package containing the {command}`volnoti` 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 = "${lib.getExe cfg.package} -v -n";
};
};
};
}