nix-config/shell.nix
2023-10-24 14:04:43 -04:00

30 lines
602 B
Nix

{ pkgs ? (import ./nixpkgs.nix) { overlays = [ ]; } }: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes repl-flake";
nativeBuildInputs = with pkgs; [
nix
home-manager
git
vim
emacs
tig
tree
ripgrep
shasum
sops
ssh-to-age
gnupg
age
yubikey-manager
pinentry-curses
];
};
services.dbus.packages = [ pkgs.gcr ];
services.pcscd.enable = true;
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
enableSSHSupport = true;
};
}