From f3146db4478abbc929f4c999389ba5f1d81ac558 Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Wed, 20 Nov 2024 15:28:10 -0300 Subject: [PATCH] buer: file-systems: Use in /run and /var/run the file-system-flags and file-system-options proposed by Hilton Chain in issues.guix.gnu.org/73494 --- operating-systems/buer/file-systems.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/operating-systems/buer/file-systems.scm b/operating-systems/buer/file-systems.scm index e15060c..b0b116f 100644 --- a/operating-systems/buer/file-systems.scm +++ b/operating-systems/buer/file-systems.scm @@ -37,7 +37,10 @@ (mount-point "/run") (check? #f) (needed-for-boot? #t) - (options "mode=0755")) + (flags '(no-dev strict-atime)) + (options (format #f "mode=0755,~ + nr_inodes=800k,~ + size=20%"))) #|tmp|# (file-system @@ -110,7 +113,10 @@ (mount-point "/var/run") (check? #f) (needed-for-boot? #t) - (options "mode=0755")) + (flags '(no-dev strict-atime)) + (options (format #f "mode=0755,~ + nr_inodes=800k,~ + size=20%"))) #|swap|# (file-system