mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
9 lines
133 B
Nix
9 lines
133 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
programs.gnupg.agent = {
|
||
|
enable = true;
|
||
|
enableSSHSupport = true;
|
||
|
};
|
||
|
services.pcscd.enable = true;
|
||
|
}
|