shell.nix (394B)
1 # Shell for bootstrapping flake-enabled nix and home-manager 2 # You can enter it through 'nix develop' or (legacy) 'nix-shell' 3 {pkgs ? (import ./nixpkgs.nix) {}}: { 4 default = pkgs.mkShell { 5 # Enable experimental features without having to specify the argument 6 NIX_CONFIG = "experimental-features = nix-command flakes"; 7 nativeBuildInputs = with pkgs; [nix home-manager git]; 8 }; 9 }