From 73e129f72aff311f3b64857a565862de4c93aae6 Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 21 Jun 2020 22:26:30 +0200 Subject: [PATCH] pulsebert: don't let journald write to fs --- hosts/pulsebert/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/pulsebert/configuration.nix b/hosts/pulsebert/configuration.nix index 9c8e2d04..ce438498 100644 --- a/hosts/pulsebert/configuration.nix +++ b/hosts/pulsebert/configuration.nix @@ -62,6 +62,11 @@ # List services that you want to enable: + # Do not log to flash: + services.journald.extraConfig = '' + Storage=volatile + ''; + # Enable the OpenSSH daemon. services.openssh.enable = true; services.openssh.permitRootLogin = "yes";