Files
nixos-config/shell.nix
T
Miguel Palhas 327b575dc5 🌅
2024-09-29 10:31:52 +01:00

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