unison: add package option

So that one can use the lighter headless version of Unison.
This commit is contained in:
pacien 2023-10-08 16:41:24 +02:00
parent 3c1d8758ac
commit 6dfbdc977e
1 changed files with 5 additions and 1 deletions

View File

@ -76,6 +76,10 @@ in {
options.services.unison = {
enable = mkEnableOption "Unison synchronisation";
package = mkPackageOption pkgs "unison" {
example = "pkgs.unison.override { enableX11 = false; }";
};
pairs = mkOption {
type = with types; attrsOf (submodule pairOptions);
default = { };
@ -117,7 +121,7 @@ in {
Environment = [ "UNISON='${toString pairCfg.stateDirectory}'" ];
ExecStart = ''
${pkgs.unison}/bin/unison \
${cfg.package}/bin/unison \
${serialiseArgs pairCfg.commandOptions} \
${strings.concatMapStringsSep " " escapeShellArg pairCfg.roots}
'';