1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 01:18:32 +02:00

avizo: add module

PR #3601
This commit is contained in:
Anton Plotnikov 2023-01-18 13:24:06 +02:00 committed by Robert Helgesson
parent 564b82b354
commit 4295fdfa6b
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
4 changed files with 86 additions and 0 deletions

2
.github/CODEOWNERS vendored
View File

@ -365,6 +365,8 @@ Makefile @thiagokokada
/modules/services/autorandr.nix @GaetanLepage
/modules/services/avizo.nix @pltanton
/modules/services/barrier.nix @Kritnich
/tests/modules/services/barrier @Kritnich

View File

@ -923,6 +923,14 @@ in
A new module is available: 'services.mpd-mpris'.
'';
}
{
time = "2023-02-22T22:16:37+00:00";
condition = hostPlatform.isLinux;
message = ''
A new module is available: 'services.avizo'.
'';
}
];
};
}

View File

@ -205,6 +205,7 @@ let
./programs/zsh.nix
./programs/zsh/prezto.nix
./services/autorandr.nix
./services/avizo.nix
./services/barrier.nix
./services/betterlockscreen.nix
./services/blueman-applet.nix

View File

@ -0,0 +1,75 @@
{ 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";
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 = ''
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 <literal>avizo</literal> package to use.";
};
};
config = mkIf cfg.enable {
assertions =
[ (hm.assertions.assertPlatform "services.avizo" pkgs platforms.linux) ];
home.packages = [ cfg.package ];
xdg.configFile."avizo/config.ini".source =
settingsFormat.generate "avizo-config.ini" cfg.settings;
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" ]; };
};
};
};
}