nix-config/shell.nix
2026-02-23 20:50:47 +01:00

9 lines
178 B
Nix

{
pkgs ? import <nixpkgs> { },
...
}:
pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [ home-manager ];
}