modules/glauth: Fix missing parenthesis

This commit is contained in:
kat witch 2021-09-05 18:41:18 +01:00
parent 3d801a9d84
commit 15f61b38c2
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 6 additions and 5 deletions

View file

@ -12,7 +12,7 @@ in
configFile = mkOption {
description = "The config path that GLAuth uses";
type = types.path;
default = pkgs.writeText "glauth-config" toTOML cfg.settings;
default = pkgs.writeText "glauth-config" (toTOML cfg.settings);
};
database = {
enable = mkEnableOption "use a database";