This commit is contained in:
Henri Dohmen 2025-07-23 21:24:32 +02:00
parent 7369ebb7b1
commit e8f2c8c9a0
Signed by: hd
GPG key ID: AB79213B044674AE
2 changed files with 10 additions and 13 deletions

View file

@ -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;
};
}

View file

@ -7,8 +7,6 @@
nginx = {
recommendedTlsSettings = true;
recommendedProxySettings = true;
recommendedGzipSettings = true;
recommendedZstdSettings = true;
recommendedOptimisation = true;
enable = true;