rix101/shells/default/default.nix

14 lines
256 B
Nix
Raw Normal View History

2023-02-07 03:02:09 +01:00
# Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs
2023-02-07 03:02:09 +01:00
, ...
}: pkgs.mkShell {
NIX_CONFIG = ''
extra-experimental-features = nix-command flakes repl-flake
'';
nativeBuildInputs = with pkgs; [
nix
home-manager
git
];
}