mirror of https://codeberg.org/anemofilia/zero
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
parent
0b4754e6aa
commit
f3146db447
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue