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:
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