nixos/home/services/ghettoptt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
298 B
Nix
Raw Permalink Normal View History

2024-03-09 22:19:38 +00:00
{ pkgs, config, ... }:
{
systemd.user.services.ghettoptt = {
Unit = {
Description = "Run ghettoptt";
};
Service = {
Type = "simple";
ExecStart = "${pkgs.ghettoptt}/bin/ghettoptt";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}