diff options
author | EuAndreh <eu@euandre.org> | 2020-10-23 09:36:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-23 09:36:16 -0300 |
commit | 4ff7a64bd40cfb6fd7ccc0727d8edbf03f879503 (patch) | |
tree | ed98e9eaeb25bd8339ff7cba757663c13a5ac6ea | |
parent | assert-content.sh: Remove $LC_ALL and avoid $LANG clash (diff) | |
download | euandre.org-4ff7a64bd40cfb6fd7ccc0727d8edbf03f879503.tar.gz euandre.org-4ff7a64bd40cfb6fd7ccc0727d8edbf03f879503.tar.xz |
default.nix: Remove rec from shell derivation
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index d4c7111..0144e9b 100644 --- a/default.nix +++ b/default.nix @@ -44,7 +44,7 @@ in rec { touch $out ''; }; - shell = pkgs.mkShell rec { + shell = pkgs.mkShell { name = "website-shell"; buildInputs = projectBuildInputs; shellHook = '' |