mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: flake-compat
This commit is contained in:
parent
ed581ca5b4
commit
419fcaa79f
5 changed files with 170 additions and 132 deletions
10
inputs.nix
Normal file
10
inputs.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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;
|
||||
};
|
||||
kittywitch = import flakeCompat {
|
||||
src = ./.;
|
||||
};
|
||||
in kittywitch.defaultNix.inputs
|
||||
Loading…
Add table
Add a link
Reference in a new issue