operating-systems: buer: Add /swap/swapfile for eventual long hibernations

main
Luis Guilherme Coelho 2024-11-19 11:51:37 -03:00
parent f96a4a3808
commit 6167d59e70
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
2 changed files with 20 additions and 2 deletions

View File

@ -121,7 +121,8 @@
(kernel linux-libre-6.11)
(kernel-arguments
(cons* "modprobe.blacklist=usbmouse,usbkbd,pcspkr"
(cons* "resume=/swap/swapfile"
"modprobe.blacklist=usbmouse,usbkbd,pcspkr"
"thinkpad_acpi.fan_control=1"
(filter (negate ((on disjoin
(partial partial string-prefix?))
@ -131,7 +132,12 @@
(file-systems
(append file-system:volumes
file-system:persistent-directories))
(swap-devices
(list (swap-space
(target "/swap/swapfile")
(dependencies
(filter (file-system-mount-point-predicate "/swap")
file-systems)))))
(users
(cons* user:radio
user:root
@ -277,6 +283,7 @@
#|Memory management services|#
(service zram-device-service-type
(zram-device-configuration
(priority 100)
(size (* 2 (ram-total)))
(compression-algorithm 'lz4)))

View File

@ -112,6 +112,17 @@
(needed-for-boot? #t)
(options "mode=0755"))
#|swap|#
(file-system
(device partition:guix)
(type "btrfs")
(mount-point "/swap")
(check? #f)
(needed-for-boot? #t)
(options (format #f "subvol=@swap,~
discard=async,~
ssd")))
#|home|#
(file-system
(device partition:guix)