15 lines
291 B
Nix
15 lines
291 B
Nix
# Shell for bootstrapping flake-enabled nix and other tooling
|
|
{ pkgs
|
|
, ...
|
|
}: {
|
|
default = pkgs.mkShell {
|
|
NIX_CONFIG = ''
|
|
extra-experimental-features = nix-command flakes repl-flake
|
|
'';
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
home-manager
|
|
git
|
|
];
|
|
};
|
|
}
|