fix: missing bracket

This commit is contained in:
Swarsel 2024-10-17 00:17:16 +02:00
parent abb352ad00
commit 8f0ad00f0b
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 9 additions and 7 deletions

View file

@ -7682,8 +7682,8 @@ Also, the system state version is set here. No need to touch it.
**** syncthing
#+begin_src nix :tangle profiles/server/common/syncthing.nix
{ pkgs, lib, config, ... }:
{
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.swarselsystems.server.syncthing {
users.users.syncthing = {
@ -7754,8 +7754,9 @@ Also, the system state version is set here. No need to touch it.
};
};
};
};
}
}
#+end_src

View file

@ -70,5 +70,6 @@
};
};
};
};
}
}