dotfiles/default.nix

14 lines
298 B
Nix
Raw Permalink Normal View History

# 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-15 09:54:40 +00:00
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
2023-02-14 08:56:48 +00:00
c_ = import ./c_.nix;
2023-01-15 09:54:40 +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