9 lines
96 B
Nix
9 lines
96 B
Nix
{ pkgs, ... }:
|
|
{
|
|
packages = with pkgs; [
|
|
gnupg
|
|
git
|
|
];
|
|
|
|
env.GPG_TTY = "\$(tty)";
|
|
}
|