12 lines
198 B
Nix
12 lines
198 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ./kde/kde-sync-xkbmap.nix ];
|
|
}
|
|
// lib.mkIf (config.my.desktop == "kde") {
|
|
services.gpg-agent.pinentry.package = lib.mkForce pkgs.pinentry-qt;
|
|
}
|