diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-01-13T15·12-0500 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2021-01-13T16·53+0000 |
commit | 486ca1633b981a8efa65f7f1b9dfa2e5a1200b55 (patch) | |
tree | 547bef89f16e01e9a809359640e9a6a3438c0bb6 /users/glittershark/gws.fyi/shell.nix | |
parent | 733871195ca599dc7aec2e5bc1e2fba0187a7535 (diff) |
fix(gws.fyi): Set config.allowUnfree in the shell.nix r/2083
Necessary for tarsnap (for now), though I'm probably gonna get rid of that sooner rather than later. Change-Id: I4614a8e4ea62edd247a0fead6ae38d1f870b36f4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2357 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users/glittershark/gws.fyi/shell.nix')
-rw-r--r-- | users/glittershark/gws.fyi/shell.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/glittershark/gws.fyi/shell.nix b/users/glittershark/gws.fyi/shell.nix index 41c77d3b80c1..846bdb6677a3 100644 --- a/users/glittershark/gws.fyi/shell.nix +++ b/users/glittershark/gws.fyi/shell.nix @@ -1,4 +1,4 @@ -with import <nixpkgs> {}; +with import <nixpkgs> { config.allowUnfree = true; }; mkShell { buildInputs = [ awscli |