dotfiles/default.nix

12 lines
308 B
Nix
Raw Normal View History

# We use top-level nix-flake, so default.nix is basically just a wrapper around ./flake.nix
(import
(
2023-01-15 09:54:40 +00:00
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
c_ = import ./c_.nix {src = ./.;};
in
c_.fetchTree lock.nodes.flake-compat.locked
)
{ src = ./.; }
).defaultNix