volnoti: add module (#2183)

This commit is contained in:
Ivan Malison 2021-07-20 22:17:27 -06:00 committed by GitHub
parent fa483b82ab
commit 41101d0e62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 47 additions and 1 deletions

4
.github/CODEOWNERS vendored
View File

@ -4,7 +4,7 @@
/modules/home-environment.nix @rycee
/modules/i18n/input-method @Kranzes
/modules/i18n/input-method @Kranzes
/tests/modules/i18n/input-method @Kranzes
/modules/misc/dconf.nix @gnidorah @rycee
@ -339,3 +339,5 @@
/modules/xresources.nix @rycee
/modules/xsession.nix @rycee
/modules/services/volnoti.nix @IvanMalison

View File

@ -2133,6 +2133,14 @@ in
A new module is available: 'services.xsettingsd'.
'';
}
{
time = "2021-07-14T20:06:18+00:00";
message = ''
A new module is available: 'services.volnoti'.
'';
}
];
};
}

View File

@ -211,6 +211,7 @@ let
./services/udiskie.nix
./services/unclutter.nix
./services/unison.nix
./services/volnoti.nix
./services/window-managers/awesome.nix
./services/window-managers/bspwm/default.nix
./services/window-managers/i3-sway/i3.nix

View File

@ -0,0 +1,35 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.volnoti;
in {
meta.maintainers = [ maintainers.imalison ];
options = {
services.volnoti = { enable = mkEnableOption "Volnoti volume HUD daemon"; };
package = mkOption {
type = types.package;
default = pkgs.volnoti;
defaultText = literalExample "pkgs.volnoti";
description = ''
Package containing the <command>volnoti</command> program.
'';
};
};
config = mkIf cfg.enable {
home.packages = [ cfg.package ];
systemd.user.services.volnoti = {
Unit = { Description = "volnoti"; };
Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { ExecStart = "${pkgs.volnoti}/bin/volnoti -v -n"; };
};
};
}