summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorMoritz Böhme <mail@moritzboeh.me>2022-01-25 11:47:16 +0100
committerMoritz Böhme <mail@moritzboeh.me>2022-10-25 19:37:48 +0200
commit8e0f5bf1256e1485ea9f1d2ed81ad1059c21f2e0 (patch)
treececf1b0fdfbff64d5bb90bc3c0a35c8207d3b383 /shell.nix
parentc923e7af73a91970d2e63e03babbca9cc0817551 (diff)
feat: Add flake.nix for nix users
Co-authored-by: Winter <winter@winter.cafe>
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..fa2a56c
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
+(import (let lock = builtins.fromJSON (builtins.readFile ./flake.lock);
+in fetchTarball {
+ url =
+ "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
+ sha256 = lock.nodes.flake-compat.locked.narHash;
+}) { src = ./.; }).shellNix