25 lines
378 B
Nix
25 lines
378 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}: let
|
|
cfg = config.sneeuwvlok.system.security;
|
|
in {
|
|
options.sneeuwvlok.system.security = {};
|
|
|
|
config = {
|
|
security = {
|
|
acme.acceptTerms = true;
|
|
polkit.enable = true;
|
|
|
|
pam = {
|
|
u2f = {
|
|
enable = true;
|
|
settings.cue = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.gnupg.agent.enable = true;
|
|
};
|
|
}
|