Fix gnupg option usage
This commit is contained in:
parent
ab4bbca3de
commit
cd290f69b9
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
options.chvp.graphical.gnupg = {
|
options.chvp.graphical.gnupg = {
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
];
|
];
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
pinentryFlavor = config.chvp.graphical.gnupg.pinentryFlavor;
|
pinentryPackage = pkgs."pinentry-${config.chvp.graphical.gnupg.pinentryFlavor}";
|
||||||
};
|
};
|
||||||
home-manager.users.charlotte = { lib, ... }: {
|
home-manager.users.charlotte = { lib, ... }: {
|
||||||
home.activation.fixPermissionsCommands = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
home.activation.fixPermissionsCommands = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue