2019-01-26 14:18:07 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.xembed-sni-proxy;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-01-26 14:18:07 +01:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.xembed-sni-proxy = {
|
|
|
|
enable = mkEnableOption "XEmbed SNI Proxy";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.plasma-workspace;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.plasma-workspace";
|
2019-01-26 14:18:07 +01:00
|
|
|
description = ''
|
|
|
|
Package containing the <command>xembedsniproxy</command>
|
|
|
|
program.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.xembed-sni-proxy" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2019-01-26 14:18:07 +01:00
|
|
|
systemd.user.services.xembed-sni-proxy = {
|
|
|
|
Unit = {
|
|
|
|
Description = "XEmbed SNI Proxy";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
2019-01-26 14:18:07 +01:00
|
|
|
|
|
|
|
Service = {
|
|
|
|
Environment = "PATH=${config.home.profileDirectory}/bin";
|
|
|
|
ExecStart = "${cfg.package}/bin/xembedsniproxy";
|
|
|
|
Restart = "on-abort";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|