Configure journald
Some checks are pending
/ Build Nix targets (push) Waiting to run

This commit is contained in:
Théo Barnouin 2025-05-13 14:55:36 +02:00
parent 9d58fb595f
commit 3c77453787
3 changed files with 18 additions and 0 deletions

View file

@ -100,6 +100,12 @@
}; };
services = { services = {
journald = {
audit = false;
extraConfig = ''
MaxRetentionSec=1day
'';
};
openssh = { openssh = {
enable = true; enable = true;
settings.PasswordAuthentication = false; settings.PasswordAuthentication = false;

View file

@ -164,6 +164,12 @@ in {
}; };
services = { services = {
journald = {
audit = false;
extraConfig = ''
MaxRetentionSec=1day
'';
};
openssh = { openssh = {
enable = true; enable = true;
settings.PasswordAuthentication = false; settings.PasswordAuthentication = false;

View file

@ -87,6 +87,12 @@
services = { services = {
cloud-init.network.enable = true; cloud-init.network.enable = true;
journald = {
audit = false;
extraConfig = ''
MaxRetentionSec=1day
'';
};
openssh = { openssh = {
enable = true; enable = true;
settings.PasswordAuthentication = false; settings.PasswordAuthentication = false;