mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-28 08:14:58 +08:00
13 lines
264 B
Nix
13 lines
264 B
Nix
{ pkgs, ... }: {
|
|
programs.gnupg = {
|
|
# Enabling the agent requires a system restart.
|
|
agent = {
|
|
enable = true;
|
|
enableExtraSocket = true;
|
|
# pinentryFlavor = "curses";
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
pass
|
|
];
|
|
}
|