Replace deprecated option

This commit is contained in:
Victor Mignot 2024-03-19 21:41:23 +01:00
parent e85de66740
commit b1f338fd07
Signed by: dala
GPG key ID: 5E7F2CE1BEAFED3D

View file

@ -1,4 +1,4 @@
{ config, lib, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
{ {
options.enableGPGKeyring = mkOption { options.enableGPGKeyring = mkOption {
@ -18,7 +18,7 @@ with lib;
enableScDaemon = true; enableScDaemon = true;
enableSshSupport = true; enableSshSupport = true;
sshKeys = [ "40DE2FEE4D3C5E2C" ]; sshKeys = [ "40DE2FEE4D3C5E2C" ];
pinentryFlavor = "curses"; pinentryPackage = pkgs.pinentry-curses;
}; };
}; };
} }