Files
dotfiles/shell.nix
2024-09-08 08:38:29 -04:00

15 lines
278 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
];
};
}