From 97b48b9701bec5e86deb523b031fac115b027aa6 Mon Sep 17 00:00:00 2001 From: kat witch Date: Sat, 4 Sep 2021 23:03:34 +0100 Subject: [PATCH] modules/nixos/glauth: Fix undefined variable --- config/modules/nixos/glauth.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/modules/nixos/glauth.nix b/config/modules/nixos/glauth.nix index 7ba0fbc4..4c4cabb0 100644 --- a/config/modules/nixos/glauth.nix +++ b/config/modules/nixos/glauth.nix @@ -17,7 +17,7 @@ in configFile = { description = "The config path that GLAuth uses"; type = types.path; - default = pkgs.writeText "glauth-config" outTOML; + default = pkgs.writeText "glauth-config" cfg.outTOML; }; database = { enable = mkEnableOption "use a database";