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,8 +1,7 @@
# 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
''; '';
@ -11,5 +10,4 @@
home-manager home-manager
git git
]; ];
};
} }