initial commit
This commit is contained in:
commit
ebc1be5217
143 changed files with 7721 additions and 0 deletions
21
modules/features/security/sysctl/security-sysctl.nix
Normal file
21
modules/features/security/sysctl/security-sysctl.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ ... }:
|
||||
{
|
||||
config.dendritic.features.security-sysctl = {
|
||||
|
||||
features = [
|
||||
"security-sysctl-kernel"
|
||||
"security-sysctl-network"
|
||||
"security-sysctl-userspace"
|
||||
];
|
||||
nixosModules = [
|
||||
|
||||
(
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
environment.systemPackages = [ pkgs.kernel-hardening-checker ];
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue