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

14 lines
304 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
2023-06-18 00:46:31 +00:00
(
import
(
2023-06-18 00:46:31 +00:00
let
2023-01-19 15:28:54 +00:00
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
2023-02-14 08:56:48 +00:00
c_ = import ./../../c_.nix;
2023-01-19 15:28:54 +00:00
in
2023-06-18 00:46:31 +00:00
c_.fetchTree lock.nodes.flake-compat.locked
)
2023-06-18 00:46:31 +00:00
{src = ./.;}
)
.defaultNix