nixos/shell.nix
2025-04-01 22:41:48 -07:00

20 lines
511 B
Nix

# Shell for bootstrapping flake-enabled nix and home-manager
# You can enter it through 'nix develop' or (legacy) 'nix-shell'
{ 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; [
home-manager
git
just
sops
age
ssh-to-age
bun
nil
nix-prefetch-scripts
];
};
}