This commit is contained in:
Osman Faruk Bayram 2025-10-19 16:13:59 +03:00
parent b1cce6ca82
commit 3501857f2a
78 changed files with 1383 additions and 913 deletions

View file

@ -0,0 +1,12 @@
{ lib, config, ... }:
{
config = lib.mkIf config.osbmModules.security.enable {
# Security hardening
security.sudo.wheelNeedsPassword = lib.mkDefault true;
# Polkit for privilege escalation
security.polkit.enable = lib.mkDefault true;
# Additional security settings can be added here
};
}