about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2018-08-31 02:17:38 +0000
committerAaron Andersen <aaron@fosslib.net>2018-08-31 02:17:38 +0000
commit7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92 (patch)
tree58437860851d51f274004bf090df6336c48619ec /nixos
parentd9943e6bba6c325c8d7bf11f4c91ad00f861e566 (diff)
downloadnixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.tar
nixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.tar.gz
nixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.tar.bz2
nixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.tar.lz
nixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.tar.xz
nixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.tar.zst
nixlib-7bc2a0dd64eb3512488c8dd981186a5b0b5c3e92.zip
removed quotes when not needed as suggested by @aszlig
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/monitoring/incron.nix6
1 files changed, 3 insertions, 3 deletions
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 = {