diff options
author | Adrian Kummerlaender | 2018-04-21 19:39:56 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2018-04-21 19:39:56 +0200 |
commit | b9ca57ecb94572f35a785ac7dbd7272a94c10c96 (patch) | |
tree | 48cc1b9bb155fa9d4f466e8f678e68c3147f84d7 | |
parent | add1b6b331094d1bb408377696a9ff93facd478f (diff) | |
download | nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.tar nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.tar.gz nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.tar.bz2 nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.tar.lz nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.tar.xz nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.tar.zst nixos_system-b9ca57ecb94572f35a785ac7dbd7272a94c10c96.zip |
Only keep logs in RAM
-rw-r--r-- | configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index bc39652..c67b682 100644 --- a/configuration.nix +++ b/configuration.nix @@ -50,6 +50,10 @@ enable = true; }; + journald = { + extraConfig = ''Storage=volatile''; + }; + xserver = { enable = true; layout = "de"; |