Add natstonotify
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m42s

This commit is contained in:
2025-02-11 20:14:37 +01:00
parent f1dba8c6d8
commit fc1a32e1c5
4 changed files with 44 additions and 0 deletions

View File

@@ -32,6 +32,7 @@
./services/backup-home.nix
./services/ghettoptt.nix
./services/alerttonotify.nix
./services/natstonotify.nix
./sops
./ssh
./zsh

View File

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