programs/terminal/emulators: welcome back ghosttyd!
This commit is contained in:
parent
317dfc0b4a
commit
9cb997e662
1 changed files with 15 additions and 0 deletions
|
@ -96,5 +96,20 @@ in {
|
||||||
];
|
];
|
||||||
packages = [pkgs.ghostty];
|
packages = [pkgs.ghostty];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.user.services.ghosttyd = {
|
||||||
|
description = "ghosttyd™";
|
||||||
|
partOf = ["graphical-session.target"];
|
||||||
|
after = ["graphical-session.target"];
|
||||||
|
wantedBy = ["graphical-session.target"];
|
||||||
|
path = lib.mkForce [];
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart = "${pkgs.ghostty}/bin/ghostty --initial-window=false --quit-after-last-window-closed=false";
|
||||||
|
Slice = "background-graphical.slice";
|
||||||
|
Restart = "on-failure";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue