also removed clipmenu also removed programs.feh, the extra options aren't needed
10 lines
230 B
Nix
10 lines
230 B
Nix
{ config, enableGUI, ... }: {
|
|
programs.gpg = {
|
|
enable = true;
|
|
homedir = "${config.xdg.dataHome}/gnupg";
|
|
};
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
pinentryFlavor = if enableGUI then "gnome3" else "tty";
|
|
};
|
|
}
|