feat: add flake-compat

This commit is contained in:
Kat Inskip 2025-07-24 20:03:58 -07:00
parent 3c055d49e9
commit 00494c72c2
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

11
default.nix Normal file
View file

@ -0,0 +1,11 @@
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
flakeCompat = fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
};
katgba = import flakeCompat {
src = ./.;
};
in
katgba.defaultNix