From 7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Fri, 31 Aug 2018 02:17:38 +0000 Subject: removed quotes when not needed as suggested by @aszlig --- nixos/modules/services/monitoring/incron.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/monitoring/incron.nix b/nixos/modules/services/monitoring/incron.nix index b366597fb2b2..3857186f42dd 100644 --- a/nixos/modules/services/monitoring/incron.nix +++ b/nixos/modules/services/monitoring/incron.nix @@ -79,13 +79,13 @@ in # incron won't read symlinks environment.etc."incron.d/system" = { mode = "0444"; - text = "${cfg.systab}"; + text = ${cfg.systab}; }; environment.etc."incron.allow" = mkIf (cfg.allow != null) { - text = "${concatStringsSep "\n" cfg.allow}"; + text = ${concatStringsSep "\n" cfg.allow}; }; environment.etc."incron.deny" = mkIf (cfg.deny != null) { - text = "${concatStringsSep "\n" cfg.deny}"; + text = ${concatStringsSep "\n" cfg.deny}; }; systemd.services.incron = { -- cgit 1.4.1