Files
nixos-configuration/hosts/pi4/security/default.nix

18 lines
294 B
Nix
Raw Normal View History

{ lib, ... }:
2025-04-15 23:39:10 +02:00
{
imports = with lib.custom; [
(relativeToRoot "shared/modules/security/ssh.nix")
./firewall.nix
];
2025-04-15 23:39:10 +02:00
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services = {
pcscd.enable = true;
gnome.gnome-keyring.enable = true;
};
2025-04-15 23:39:10 +02:00
}