diff --git a/home/unison.nix b/home/unison.nix index ca6e3d1..5638468 100644 --- a/home/unison.nix +++ b/home/unison.nix @@ -15,17 +15,16 @@ in config = lib.mkIf cfg.enable { home.file = lib.mapAttrs' (name: roots: { name = ".unison/${name}.prf"; - value.text = - '' - watch = true - auto = true - batch = true - sshargs = -C - logfile = /dev/null - confirmbigdeletes = true - confirmmerge = true - '' - + lib.concatStringsSep "\n" (map (root: "root = ${root}") roots.roots); + value.text = '' + watch = true + auto = true + batch = true + sshargs = -C + logfile = /dev/null + confirmbigdeletes = true + confirmmerge = true + '' + + lib.concatStringsSep "\n" (map (root: "root = ${root}") roots.roots); }) cfg.pairs; }; } diff --git a/host/roam/services.nix b/host/roam/services.nix index 18c1aca..4ee1db9 100644 --- a/host/roam/services.nix +++ b/host/roam/services.nix @@ -7,8 +7,6 @@ nginx = { recommendedTlsSettings = true; recommendedProxySettings = true; - recommendedGzipSettings = true; - recommendedZstdSettings = true; recommendedOptimisation = true; enable = true;