7 lines
		
	
	
	
		
			280 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			280 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs ? (import ./nixpkgs.nix) { } }: {
 | 
						|
  default = pkgs.mkShell {
 | 
						|
    # Enable experimental features without having to specify the argument
 | 
						|
    NIX_CONFIG = "experimental-features = nix-command flakes";
 | 
						|
    nativeBuildInputs = with pkgs; [ nix home-manager git neovim ];
 | 
						|
  };
 | 
						|
}
 |