Add ghettoptt service

This commit is contained in:
2024-03-09 23:19:38 +01:00
parent 137fec122b
commit fb3413baff
5 changed files with 80 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, config, ... }:
{
systemd.user.services.ghettoptt = {
Unit = {
Description = "Run ghettoptt";
};
Service = {
Type = "simple";
ExecStart = "${pkgs.ghettoptt}/bin/ghettoptt";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}