1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 13:03:33 +02:00
home-manager/modules/services/notify-osd.nix
Ivan Malison 2c4234cb79
notify-osd: init (#2240)
Daemon that displays passive pop-up notifications
2021-08-08 20:29:36 -04:00

49 lines
1.0 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 = literalExample "pkgs.notify-osd";
description = ''
Package containing the <command>notify-osd</command> 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-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Install.WantedBy = [ "graphical-session.target" ];
Service = {
ExecStart = "${cfg.package}/bin/notify-osd";
Restart = "on-abort";
};
};
};
}