diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-09 18:42:38 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-04-02 20:01:37 -0400 |
commit | 58c37322bd487ed28c4604340f82b1e7769e8666 (patch) | |
tree | 3fbc74d002e8d6628f20a540d0566c0f2856e850 /shell.nix | |
parent | sisu.org minor adjustment to opening description (diff) |
nixify (start to nixify)
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..80173752 --- /dev/null +++ b/shell.nix @@ -0,0 +1,6 @@ +{ pkgs ? import <nixpkgs> {} }: +pkgs.mkShell { + buildInputs = [ + (import ./nix/pkglst/packages.nix { inherit pkgs; }) + ]; +} |