25 lines
1.2 KiB
Nix
25 lines
1.2 KiB
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
home.packages = [ pkgs.waypipe ];
|
|
systemd.user.services = {
|
|
waypipe-client = {
|
|
Unit.Description = "Runs waypipe on startup to support SSH forwarding";
|
|
Service = {
|
|
ExecStartPre = "${lib.getExe' pkgs.coreutils "mkdir"} %h/.waypipe -p";
|
|
ExecStart = "${lib.getExe pkgs.waypipe} --socket %h/.local/state/waypipe/client.sock client";
|
|
ExecStopPost = "${lib.getExe' pkgs.coreutils "rm"} -f %h/.local/state/waypipe/client.sock";
|
|
};
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
waypipe-server = {
|
|
Unit.Description = "Runs waypipe on startup to support SSH forwarding";
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStartPre = "${lib.getExe' pkgs.coreutils "mkdir"} %h/.waypipe -p";
|
|
ExecStart = "${lib.getExe pkgs.waypipe} --socket %h/.local/state/waypipe/server.sock --title-prefix '[%H] ' --login-shell --display wayland-waypipe server -- ${lib.getExe' pkgs.coreutils "sleep"} infinity";
|
|
ExecStopPost = "${lib.getExe' pkgs.coreutils "rm"} -f %h/.local/state/waypipe/server.sock %t/wayland-waypipe";
|
|
};
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
};
|
|
}
|