Files
dotfiles/shell.nix
2025-12-31 16:34:21 -05:00

20 lines
314 B
Nix

{
pkgs ? import <nixpkgs> { },
...
}:
{
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
nativeBuildInputs = with pkgs; [
age
busybox
git
gnupg
home-manager
my_python
nix
ssh-to-age
];
};
}