mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 00:12:39 +03:00
removed quotes when not needed as suggested by @aszlig
This commit is contained in:
parent
d9943e6bba
commit
7bc2a0dd64
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user