removed quotes when not needed as suggested by @aszlig

This commit is contained in:
Aaron Andersen 2018-08-31 02:17:38 +00:00
parent d9943e6bba
commit 7bc2a0dd64

View File

@ -79,13 +79,13 @@ in
# incron won't read symlinks # incron won't read symlinks
environment.etc."incron.d/system" = { environment.etc."incron.d/system" = {
mode = "0444"; mode = "0444";
text = "${cfg.systab}"; text = ${cfg.systab};
}; };
environment.etc."incron.allow" = mkIf (cfg.allow != null) { 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) { environment.etc."incron.deny" = mkIf (cfg.deny != null) {
text = "${concatStringsSep "\n" cfg.deny}"; text = ${concatStringsSep "\n" cfg.deny};
}; };
systemd.services.incron = { systemd.services.incron = {