fix(devShells): fix output of default shell

This commit is contained in:
reo101 2023-02-19 13:11:41 +02:00
parent 5ab4359d2d
commit cbac8b2754
Signed by: reo101
GPG key ID: 675AA7EF13964ACB

View file

@ -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
];
}