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
|
||||
{ pkgs
|
||||
, ...
|
||||
}: {
|
||||
default = pkgs.mkShell {
|
||||
NIX_CONFIG = ''
|
||||
extra-experimental-features = nix-command flakes repl-flake
|
||||
'';
|
||||
nativeBuildInputs = with pkgs; [
|
||||
nix
|
||||
home-manager
|
||||
git
|
||||
];
|
||||
};
|
||||
}: pkgs.mkShell {
|
||||
NIX_CONFIG = ''
|
||||
extra-experimental-features = nix-command flakes repl-flake
|
||||
'';
|
||||
nativeBuildInputs = with pkgs; [
|
||||
nix
|
||||
home-manager
|
||||
git
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue