We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allowed_symlinks.txt
See the 1.20 Pre-release 7 patch notes and corresponding help article.
The naïve solution would be to do
symlinks = { "allowed_symlinks.txt" = pkgs.writeText "allowed_symlinks.txt" "/nix/store"; };
An ideal solution would be
alowedSymlinks = [ "/nix/store" ];
This would solve the problem brought up in #74.
The text was updated successfully, but these errors were encountered:
This should work too (format from 7408a56), and has all the module-system niceties:
symlinks = { "allowed_symlinks.txt" = { value = ["/nix/store"]; format = { type = lib.types.listOf str; generate = name: value: pkgs.writeText name (lib.concatStringsSep "\n" value); }; }; };
But a convenience allowedSymlinks would be nice.
allowedSymlinks
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
See the 1.20 Pre-release 7 patch notes and corresponding help article.
The naïve solution would be to do
An ideal solution would be
This would solve the problem brought up in #74.
The text was updated successfully, but these errors were encountered: