sneeuwvlok/modules/nixos/system/security/default.nix
Chris Kruining a03240d99d
more work
2025-07-28 14:34:40 +02:00

23 lines
No EOL
386 B
Nix

{ config, namespace, inputs, ... }:
let
cfg = config.${namespace}.system.security;
in
{
options.${namespace}.system.security = {};
config = {
security = {
acme.acceptTerms = true;
polkit.enable = true;
pam = {
u2f = {
enable = true;
settings.cue = true;
};
};
};
programs.gnupg.agent.enable = true;
};
}