15 lines
207 B
Nix
15 lines
207 B
Nix
{
|
|
imports = [
|
|
./firewall.nix
|
|
];
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
services = {
|
|
pcscd.enable = true;
|
|
gnome.gnome-keyring.enable = true;
|
|
};
|
|
}
|