fixes
This commit is contained in:
parent
7369ebb7b1
commit
e8f2c8c9a0
2 changed files with 10 additions and 13 deletions
|
|
@ -15,17 +15,16 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home.file = lib.mapAttrs' (name: roots: {
|
home.file = lib.mapAttrs' (name: roots: {
|
||||||
name = ".unison/${name}.prf";
|
name = ".unison/${name}.prf";
|
||||||
value.text =
|
value.text = ''
|
||||||
''
|
watch = true
|
||||||
watch = true
|
auto = true
|
||||||
auto = true
|
batch = true
|
||||||
batch = true
|
sshargs = -C
|
||||||
sshargs = -C
|
logfile = /dev/null
|
||||||
logfile = /dev/null
|
confirmbigdeletes = true
|
||||||
confirmbigdeletes = true
|
confirmmerge = true
|
||||||
confirmmerge = true
|
''
|
||||||
''
|
+ lib.concatStringsSep "\n" (map (root: "root = ${root}") roots.roots);
|
||||||
+ lib.concatStringsSep "\n" (map (root: "root = ${root}") roots.roots);
|
|
||||||
}) cfg.pairs;
|
}) cfg.pairs;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
nginx = {
|
nginx = {
|
||||||
recommendedTlsSettings = true;
|
recommendedTlsSettings = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
recommendedGzipSettings = true;
|
|
||||||
recommendedZstdSettings = true;
|
|
||||||
recommendedOptimisation = true;
|
recommendedOptimisation = true;
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue