Add ghettoptt service
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
./hyprland
|
||||
./ssh
|
||||
./services/backup-home.nix
|
||||
./services/ghettoptt.nix
|
||||
];
|
||||
firefox.enable = true;
|
||||
tmux.enable = true;
|
||||
|
@@ -68,5 +68,6 @@
|
||||
|
||||
# Homemade shit
|
||||
notlistener
|
||||
ghettoptt
|
||||
];
|
||||
}
|
||||
|
15
home/services/ghettoptt.nix
Normal file
15
home/services/ghettoptt.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user