at deck 483 B view raw
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; [ 9 nix 10 home-manager 11 git 12 agenix 13 deploy-rs 14 dnscontrol 15 git-bug 16 ]; 17 }; 18}