Remove alerttonotify
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m40s
Periodic flake update / flake-update (push) Successful in 21m25s

This commit is contained in:
2025-02-11 22:11:59 +01:00
parent 6d4f3cad3b
commit 82d3a3d8e8
4 changed files with 0 additions and 44 deletions

View File

@@ -1,15 +0,0 @@
{ pkgs, config, ... }:
{
systemd.user.services.alerttonotify = {
Unit = {
Description = "Run alerttonotify";
};
Service = {
Type = "simple";
ExecStart = "${pkgs.alerttonotify}/bin/alerttonotify";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}