mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
modules/glauth: Fix missing parenthesis
This commit is contained in:
parent
3d801a9d84
commit
15f61b38c2
3 changed files with 6 additions and 5 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue