1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00
home-manager/modules/services/pbgopy.nix

74 lines
1.7 KiB
Nix
Raw Normal View History

2020-12-03 03:55:37 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
2021-04-22 23:46:05 +02:00
2020-12-03 03:55:37 +01:00
cfg = config.services.pbgopy;
package = pkgs.pbgopy;
2021-04-22 23:46:05 +02:00
commandLine = concatStringsSep " " ([
"${package}/bin/pbgopy serve"
"--port ${toString cfg.port}"
"--ttl ${cfg.cache.ttl}"
] ++ optional (cfg.httpAuth != null)
"--basic-auth ${escapeShellArg cfg.httpAuth}");
2020-12-03 03:55:37 +01:00
in {
meta.maintainers = [ maintainers.ivar ];
options.services.pbgopy = {
enable = mkEnableOption "pbgopy";
2021-04-22 23:46:05 +02:00
port = mkOption {
type = types.port;
default = 9090;
example = 8080;
description = ''
The port to host the pbgopy server on.
'';
};
2020-12-03 03:55:37 +01:00
cache.ttl = mkOption {
type = types.str;
default = "24h";
example = "10m";
description = ''
The TTL for the cache. Use <literal>"0s"</literal> to disable it.
'';
};
2021-04-22 23:46:05 +02:00
httpAuth = mkOption {
type = types.nullOr types.str;
default = null;
example = "user:pass";
description = ''
Basic HTTP authentication's username and password. Both the username and
password are escaped.
'';
};
2020-12-03 03:55:37 +01:00
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.pbgopy" pkgs
lib.platforms.linux)
];
2020-12-03 03:55:37 +01:00
home.packages = [ package ];
systemd.user.services.pbgopy = {
Unit = {
Description = "pbgopy server for sharing the clipboard between devices";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
2021-04-22 23:46:05 +02:00
ExecStart = commandLine;
2020-12-03 03:55:37 +01:00
Restart = "on-abort";
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
};
}