Add configuration for WSL2

This commit is contained in:
Dave Gallant
2022-07-02 22:56:20 +00:00
parent 920602e0fe
commit d74ec8f89b
21 changed files with 1101 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
(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