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

77 lines
1.9 KiB
Nix
Raw Normal View History

2023-01-18 12:24:06 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.avizo;
settingsFormat = pkgs.formats.ini { };
in {
meta.maintainers = [ hm.maintainers.pltanton ];
options.services.avizo = {
enable = mkEnableOption "avizo, a simple notification daemon";
2023-01-18 12:24:06 +01:00
settings = mkOption {
type = (pkgs.formats.ini { }).type;
default = { };
example = literalExpression ''
{
default = {
time = 1.0;
y-offset = 0.5;
fade-in = 0.1;
fade-out = 0.2;
padding = 10;
};
}
'';
description = ''
2023-01-18 12:24:06 +01:00
The settings that will be written to the avizo configuration file.
'';
};
package = mkOption {
type = types.package;
default = pkgs.avizo;
defaultText = literalExpression "pkgs.avizo";
example = literalExpression ''
pkgs.avizo.overrideAttrs (final: prev: {
patchPhase = "cp ''${./images}/*.png data/images/";
})
'';
description = "The `avizo` package to use.";
2023-01-18 12:24:06 +01:00
};
};
config = mkIf cfg.enable {
assertions =
[ (hm.assertions.assertPlatform "services.avizo" pkgs platforms.linux) ];
xdg.configFile."avizo/config.ini" = mkIf (cfg.settings != { }) {
source = settingsFormat.generate "avizo-config.ini" cfg.settings;
};
2023-01-18 12:24:06 +01:00
home.packages = [ cfg.package ];
2023-01-18 12:24:06 +01:00
systemd.user = {
services.avizo = {
Unit = {
Description = "Volume/backlight OSD indicator";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
ConditionEnvironment = "WAYLAND_DISPLAY";
Documentation = "man:avizo(1)";
};
Service = {
Type = "simple";
ExecStart = "${cfg.package}/bin/avizo-service";
Restart = "always";
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
};
};
}