Add alerttonotify user service
This commit is contained in:
15
home/services/alerttonotify.nix
Normal file
15
home/services/alerttonotify.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
systemd.user.services.alerttonotify = {
|
||||
Unit = {
|
||||
Description = "Run alerttonotify";
|
||||
};
|
||||
Service = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.alerttonotify}/bin/alerttonotify";
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "graphical-session.target" ];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user