1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/modules/services/avizo.nix
Austin Horstman 82ee14ff60
treewide: remove with lib (#6871)
Remove from services.
2025-04-21 11:00:59 -05:00

82 lines
2 KiB
Nix

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