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

@@ -22,6 +22,7 @@
./hyprland
./ssh
./services/backup-home.nix
./services/ghettoptt.nix
];
firefox.enable = true;
tmux.enable = true;

View File

@@ -68,5 +68,6 @@
# Homemade shit
notlistener
ghettoptt
];
}

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" ];
};
};
}