nix fmt
This commit is contained in:
parent
563ffc4022
commit
93d6e2e39a
19 changed files with 185 additions and 188 deletions
|
@ -1,11 +1,20 @@
|
|||
{lib, pkgs, config, ...}: {
|
||||
home.packages = [
|
||||
pkgs.gcr
|
||||
] ++
|
||||
(if config.services.gpg-agent.pinentryFlavor == "gtk2" then [pkgs.pinentry-gtk2]
|
||||
else if config.services.gpg-agent.pinentryFlavor == "gnome3" then [pkgs.pinentry-gnome]
|
||||
else [])
|
||||
;
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages =
|
||||
[
|
||||
pkgs.gcr
|
||||
]
|
||||
++ (
|
||||
if config.services.gpg-agent.pinentryFlavor == "gtk2"
|
||||
then [pkgs.pinentry-gtk2]
|
||||
else if config.services.gpg-agent.pinentryFlavor == "gnome3"
|
||||
then [pkgs.pinentry-gnome]
|
||||
else []
|
||||
);
|
||||
|
||||
programs.gpg.enable = true;
|
||||
services.gpg-agent = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue