home-manager/modules/services/avizo.nix
Emily 36a53d9f26 treewide: convert all option docs to Markdown
This process was automated by [my fork of `nix-doc-munge`]. All
conversions were automatically checked to produce the same DocBook
result when converted back, modulo minor typographical/formatting
differences on the acceptable-to-desirable spectrum.

To reproduce this commit, run:

  $ NIX_PATH=nixpkgs=flake:nixpkgs/e7e69199f0372364a6106a1e735f68604f4c5a25 \
    nix shell nixpkgs#coreutils \
    -c find . -name '*.nix' \
    -exec nix run -- github:emilazy/nix-doc-munge/98dadf1f77351c2ba5dcb709a2a171d655f15099 \
    {} +
  $ ./format

[my fork of `nix-doc-munge`]: https://github.com/emilazy/nix-doc-munge/tree/home-manager
2023-07-17 18:40:56 +01:00

77 lines
1.9 KiB
Nix

{ 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 (lib.mdDoc "avizo, a simple notification daemon");
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 = lib.mdDoc ''
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 = lib.mdDoc "The `avizo` package to use.";
};
};
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;
};
home.packages = [ cfg.package ];
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" ]; };
};
};
};
}