summary refs log tree commit diff
path: root/nixos/modules/system/boot/systemd.nix
diff options
context:
space:
mode:
authorKreyren <kreyren@fsfe.org>2021-07-08 15:36:30 +0200
committerGitHub <noreply@github.com>2021-07-08 15:36:30 +0200
commitca3b4ce3d2aee8b0cea0752d1f05e8347446e10a (patch)
tree68b0c7ac4cc19c715db5f746bb24287ce397f91a /nixos/modules/system/boot/systemd.nix
parentc9e5c08eae4c0783c3ee04bf6eae20a9e9120315 (diff)
downloadnixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.tar
nixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.tar.gz
nixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.tar.bz2
nixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.tar.lz
nixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.tar.xz
nixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.tar.zst
nixpkgs-ca3b4ce3d2aee8b0cea0752d1f05e8347446e10a.zip
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
Diffstat (limited to 'nixos/modules/system/boot/systemd.nix')
-rw-r--r--nixos/modules/system/boot/systemd.nix2
1 files changed, 1 insertions, 1 deletions
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
         <citerefentry><refentrytitle>tmpfiles.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>
         for the exact format.