dotfiles/shell.nix

12 lines
374 B
Nix
Raw Normal View History

# This uses the exported devShells from flake.nix
# the default or base version of nix-shell can be found in dev-shell.nix instead
# This architecture is because we use top-level flake.nix
(import
(
2023-01-15 09:54:40 +00:00
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
2023-02-14 08:56:48 +00:00
in (import ./c_.nix).fetchTree lock.nodes.flake-compat.locked
)
{ src = ./.; }
).shellNix