From e2b506b011a2786200bdda0984c4a671b85adcc8 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Wed, 7 Aug 2019 13:51:06 -0400 Subject: [PATCH] Get the ini module to use this API --- nixos/modules/tahoe.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/tahoe.nix b/nixos/modules/tahoe.nix index e0e16a9c..05e68d4f 100644 --- a/nixos/modules/tahoe.nix +++ b/nixos/modules/tahoe.nix @@ -6,6 +6,7 @@ with lib; let cfg = config.services.tahoe; + ini = pkgs.callPackage ../lib/ini.nix { }; in { options.services.tahoe = { @@ -158,7 +159,7 @@ in # This configuration is generated by Nix. Edit at your own # peril; here be dragons. - ${allConfigSectionsText settings.sections} + ${ini.allConfigSectionsText settings.sections} ''; }); # Actually require Tahoe, so that we will have it installed. -- GitLab