feat: consolidate, license

This commit is contained in:
Kat Inskip 2025-10-25 02:09:48 -07:00
commit 0ade7d9539
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
19 changed files with 2088 additions and 0 deletions

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;
};
fzfdapter = import flakeCompat {
src = ./.;
};
in
fzfdapter.defaultNix