Got my NixOS flake to run under WSL!

This commit is contained in:
Emmet 2023-08-20 17:55:05 -05:00
parent e877fd63bc
commit 0a71232a56
18 changed files with 1063 additions and 10 deletions

View file

@ -0,0 +1,13 @@
(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 = ./.;
}).defaultNix