mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
13 lines
362 B
Nix
13 lines
362 B
Nix
let
|
|
lockFile = builtins.fromJSON (builtins.readFile ./flake.lock);
|
|
flake-compat-node = lockFile.nodes.${lockFile.nodes.root.inputs.flake-compat};
|
|
flake-compat = builtins.fetchTarball {
|
|
inherit (flake-compat-node.locked) url;
|
|
sha256 = flake-compat-node.locked.narHash;
|
|
};
|
|
|
|
flake = import flake-compat {
|
|
src = ./.;
|
|
};
|
|
in
|
|
flake.defaultNix
|