nixos/home/services/natstonotify.nix

16 lines
302 B
Nix
Raw Normal View History

2025-02-11 19:14:37 +00:00
{ pkgs, ... }:
{
systemd.user.services.natstonotify = {
Unit = {
Description = "Run natstonotify";
};
Service = {
Type = "simple";
ExecStart = "${pkgs.natstonotify}/bin/natstonotify";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}