nixos/home/services/natstonotify.nix
Torjus Håkestad fc1a32e1c5
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m42s
Add natstonotify
2025-02-11 20:14:37 +01:00

16 lines
302 B
Nix

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