mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Add options to support more flexible module configurations. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
96 lines
2.2 KiB
Nix
96 lines
2.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
getExe'
|
|
mkEnableOption
|
|
mkOption
|
|
optional
|
|
types
|
|
;
|
|
|
|
cfg = config.services.barrier;
|
|
in
|
|
{
|
|
|
|
meta.maintainers = with lib.maintainers; [ kritnich ];
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "services" "barrier" "client" "tray" ] ''
|
|
The tray option is non-functional and has been removed.
|
|
'')
|
|
];
|
|
|
|
options.services.barrier = {
|
|
|
|
package = lib.mkPackageOption pkgs "barrier" { };
|
|
|
|
client = {
|
|
|
|
enable = mkEnableOption "Barrier Client daemon";
|
|
|
|
name = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = ''
|
|
Screen name of client. Defaults to hostname.
|
|
'';
|
|
};
|
|
|
|
server = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
Server to connect to formatted as
|
|
`<host>[:<port>]`.
|
|
Port defaults to `24800`.
|
|
'';
|
|
};
|
|
|
|
enableCrypto = mkEnableOption "crypto (SSL) plugin" // {
|
|
default = true;
|
|
};
|
|
|
|
enableDragDrop = mkEnableOption "file drag & drop";
|
|
|
|
extraFlags = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ "-f" ];
|
|
defaultText = lib.literalExpression ''[ "-f" ]'';
|
|
description = ''
|
|
Additional flags to pass to {command}`barrierc`.
|
|
See {command}`barrierc --help`.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.client.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.barrier" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.barrierc = {
|
|
Unit = {
|
|
Description = "Barrier Client daemon";
|
|
After = [ "graphical-session.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
Service.ExecStart =
|
|
with cfg.client;
|
|
toString (
|
|
[ "${getExe' cfg.package "barrierc"}" ]
|
|
++ optional (name != null) "--name ${name}"
|
|
++ optional (!enableCrypto) "--disable-crypto"
|
|
++ optional enableDragDrop "--enable-drag-drop"
|
|
++ extraFlags
|
|
++ [ server ]
|
|
);
|
|
};
|
|
};
|
|
}
|