Files
dotfiles/shell.nix
2025-02-08 18:13:31 -05:00

19 lines
285 B
Nix

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