Init at 5.15.43-rt45

This commit is contained in:
Matty Willoughby
2022-06-15 22:11:01 +08:00
commit c6d2c0ed56
5 changed files with 170 additions and 0 deletions

10
default.nix Normal file
View File

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