dotfiles/nix-conf/home-manager/default.nix

12 lines
314 B
Nix
Raw Normal View History

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