Add natstonotify
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m42s
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m42s
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
./services/backup-home.nix
|
||||
./services/ghettoptt.nix
|
||||
./services/alerttonotify.nix
|
||||
./services/natstonotify.nix
|
||||
./sops
|
||||
./ssh
|
||||
./zsh
|
||||
|
15
home/services/natstonotify.nix
Normal file
15
home/services/natstonotify.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user