18 lines
377 B
Nix
18 lines
377 B
Nix
{ ... }:
|
|
{
|
|
config.dendritic.features.security-systemd-journald = {
|
|
nixosModules = [
|
|
(
|
|
{ ... }:
|
|
{
|
|
systemd.services.systemd-journald.serviceConfig = {
|
|
NoNewPrivileges = true;
|
|
ProtectProc = "invisible";
|
|
ProtectHostname = true;
|
|
PrivateMounts = true;
|
|
};
|
|
}
|
|
)
|
|
];
|
|
};
|
|
}
|