7 lines
198 B
Nix
7 lines
198 B
Nix
{ pkgs ? (import ./nixpgs.nix) { } }: {
|
|
default = pkgs.mkShell {
|
|
NIX_CONFIG = "experimental-features = nix-command flakes";
|
|
nativeBuildInputs = with pkgs; [ nix home-manager git ];
|
|
};
|
|
}
|