1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
home-manager/modules/services/notify-osd.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

53 lines
1 KiB
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.notify-osd;
in
{
meta.maintainers = [ maintainers.imalison ];
options = {
services.notify-osd = {
enable = mkEnableOption "notify-osd";
package = mkOption {
type = types.package;
default = pkgs.notify-osd;
defaultText = literalExpression "pkgs.notify-osd";
description = ''
Package containing the {command}`notify-osd` program.
'';
};
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.notify-osd" pkgs lib.platforms.linux)
];
systemd.user.services.notify-osd = {
Unit = {
Description = "notify-osd";
After = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Install.WantedBy = [ "graphical-session.target" ];
Service = {
ExecStart = "${cfg.package}/bin/notify-osd";
Restart = "on-abort";
};
};
};
}