diff options
author | makefu <github@syntax-fehler.de> | 2022-09-24 11:16:16 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-09-24 11:16:16 +0200 |
commit | 1e313018c3eecd1dcf23e39c9f9176d9529a1856 (patch) | |
tree | 50b3170e4369fe5930f7ffb9eaf33a8ccf9cc795 /makefu | |
parent | 90596407c9d7b39b1a941b64cc33e1d43b0b957a (diff) |
ma sane-extra: give output a name
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/3modules/sane-extra.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefu/3modules/sane-extra.nix b/makefu/3modules/sane-extra.nix index 2e0ce8f2f..8cbed572c 100644 --- a/makefu/3modules/sane-extra.nix +++ b/makefu/3modules/sane-extra.nix @@ -22,7 +22,7 @@ let ${concatMapStrings (c: '' f="$out/${c.name}.conf" [ ! -e "$f" ] || chmod +w "$f" - cat ${builtins.toFile "" (c.value + "\n")} >>"$f" + cat ${builtins.toFile "outfile" (c.value + "\n")} >>"$f" chmod -w "$f" '') (mapAttrsToList nameValuePair cfg.extraConfig)} chmod -w $out |