summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorHilton Chain <hako@ultrarare.space>2024-09-26 15:05:28 +0800
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-03-05 14:23:42 +0900
commite88018be70ffb8ea35819a4c95d44ec20868ca59 (patch)
tree40dfd628aed9cc8bf0548de3c8e91af8ed799e38 /gnu/system
parentc695de0d04f16c2f21d2386823b3c2a3ad2f7517 (diff)
file-systems: %base-file-systems: Add tmpfs /run.
* gnu/system/file-systems (%runtime-variable-data): New variable. (%base-file-systems): Add it. * doc/guix.texi (File Systems): Document it. * gnu/services.scm (cleanup-gexp): Adjust accordingly. Change-Id: I3a95e49d396fbb2577026aefc247cfe996c5f267 Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/file-systems.scm15
1 files changed, 14 insertions, 1 deletions
diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index 4ea8237c70d..8c3898c9bfe 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -82,6 +82,7 @@
82 %pseudo-terminal-file-system 82 %pseudo-terminal-file-system
83 %tty-gid 83 %tty-gid
84 %immutable-store 84 %immutable-store
85 %runtime-variable-data
85 %control-groups 86 %control-groups
86 %elogind-file-systems 87 %elogind-file-systems
87 88
@@ -448,6 +449,17 @@ TARGET in the other system."
448 (check? #f) 449 (check? #f)
449 (flags '(read-only bind-mount no-atime)))) 450 (flags '(read-only bind-mount no-atime))))
450 451
452(define %runtime-variable-data
453 (file-system
454 (type "tmpfs")
455 (mount-point "/run")
456 (device "tmpfs")
457 (flags '(no-suid no-dev strict-atime))
458 (options "mode=0755,nr_inodes=800k,size=20%")
459 (needed-for-boot? #t)
460 (check? #f)
461 (create-mount-point? #t)))
462
451(define %control-groups 463(define %control-groups
452 ;; The cgroup2 file system. 464 ;; The cgroup2 file system.
453 (list (file-system 465 (list (file-system
@@ -497,7 +509,8 @@ TARGET in the other system."
497 %debug-file-system 509 %debug-file-system
498 %shared-memory-file-system 510 %shared-memory-file-system
499 %efivars-file-system 511 %efivars-file-system
500 %immutable-store)) 512 %immutable-store
513 %runtime-variable-data))
501 514
502(define %base-live-file-systems 515(define %base-live-file-systems
503 ;; This is the bare minimum to use live file-systems. 516 ;; This is the bare minimum to use live file-systems.