fix(devShells): fix output of default
shell
This commit is contained in:
parent
5ab4359d2d
commit
cbac8b2754
1 changed files with 9 additions and 11 deletions
|
@ -1,15 +1,13 @@
|
||||||
# Shell for bootstrapping flake-enabled nix and other tooling
|
# Shell for bootstrapping flake-enabled nix and other tooling
|
||||||
{ pkgs
|
{ pkgs
|
||||||
, ...
|
, ...
|
||||||
}: {
|
}: pkgs.mkShell {
|
||||||
default = pkgs.mkShell {
|
NIX_CONFIG = ''
|
||||||
NIX_CONFIG = ''
|
extra-experimental-features = nix-command flakes repl-flake
|
||||||
extra-experimental-features = nix-command flakes repl-flake
|
'';
|
||||||
'';
|
nativeBuildInputs = with pkgs; [
|
||||||
nativeBuildInputs = with pkgs; [
|
nix
|
||||||
nix
|
home-manager
|
||||||
home-manager
|
git
|
||||||
git
|
];
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue