Add alerttonotify user service
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m22s
Periodic flake update / flake-update (push) Successful in 1m46s

This commit is contained in:
2024-12-03 06:52:19 +01:00
parent 2de34d6505
commit 10866cb97c
3 changed files with 20 additions and 4 deletions

View 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" ];
};
};
}