summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorMitja Felicijan <m@mitjafelicijan.com>2023-07-10 03:46:30 +0200
committerMitja Felicijan <m@mitjafelicijan.com>2023-07-10 03:46:30 +0200
commit0d3c5134b8698359320ad0456dc8180c1857b106 (patch)
treef3e7e2269296c713459d57dcfedbd04d4eafe7a5 /shell.nix
parentf537b8194d0cbc6197fb77c7f20663922c836a28 (diff)
downloadjbmafp-0d3c5134b8698359320ad0456dc8180c1857b106.tar.gz
Added --new command that creates new page
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..18d6c87
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
+{ pkgs ? import <nixpkgs> {} }:
+ pkgs.mkShell {
+ nativeBuildInputs = with pkgs.buildPackages; [
+ go
+ ];
+}