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