From ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a Mon Sep 17 00:00:00 2001 From: Kreyren Date: Thu, 8 Jul 2021 15:36:30 +0200 Subject: [PATCH] systemd.tmpfiles.rules: Fix false info As per https://www.freedesktop.org/software/systemd/man/tmpfiles.d.html the current description is missleading as it fails to mention volatile files and creation with deletion --- nixos/modules/system/boot/systemd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 6be7b7e6846..abd8ab29cae 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -755,7 +755,7 @@ in default = []; example = [ "d /tmp 1777 root root 10d" ]; description = '' - Rules for creating and cleaning up temporary files + Rules for creation, deletion and cleaning of volatile and temporary files automatically. See tmpfiles.d5 for the exact format.