All checks were successful
Run nix flake check / flake-check (push) Successful in 1m42s
16 lines
302 B
Nix
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" ];
|
|
};
|
|
};
|
|
}
|