summaryrefslogtreecommitdiff
path: root/nix/shell.nix
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2021-11-07 02:06:32 +0100
committerMiguel <m.i@gmx.at>2021-11-07 02:06:32 +0100
commit78306cc7562e8a8475dd839fdc175ddf15654df5 (patch)
treeeef029adca44a15f804e3c3bff45edc74e48f9f2 /nix/shell.nix
parentdc837e396eb92218b5bed025801e1accb11415c8 (diff)
adding new nix dir
Diffstat (limited to 'nix/shell.nix')
-rw-r--r--nix/shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nix/shell.nix b/nix/shell.nix
new file mode 100644
index 0000000..b1b4b16
--- /dev/null
+++ b/nix/shell.nix
@@ -0,0 +1,6 @@
+{ pkgs ? import <nixpkgs> {} }:
+with pkgs;
+mkShell {
+ # nativeBuildInputs is usually what you want -- tools you need to run
+ nativeBuildInputs = [ nixops nixos-generators ];
+}