dotfiles/shell.nix

15 lines
380 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
2023-06-18 00:46:31 +00:00
(
import
(
2023-06-18 00:46:31 +00:00
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
(import ./c_.nix).fetchTree lock.nodes.flake-compat.locked
)
2023-06-18 00:46:31 +00:00
{src = ./.;}
)
.shellNix