16 lines
314 B
Nix
16 lines
314 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
systemd.user.services.alerttonotify = {
|
|
Unit = {
|
|
Description = "Run alerttonotify";
|
|
};
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.alerttonotify}/bin/alerttonotify";
|
|
};
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
}
|