;;; Copyright © 2026 bdunahu (define-module (kolwynia os hel file-systems) #:use-module (gnu system mapped-devices) #:use-module (gnu system file-systems) #:export (%mapped-devices %file-systems)) ;;; Commentary: ;;; ;;; filesystems for hel ;;; ;;; Code: (define %mapped-devices (list (mapped-device (source (uuid "e76f9813-8f12-49bc-b09b-48acf9710826")) (target "cryptroot") (type luks-device-mapping)))) (define %file-systems (cons* (file-system (mount-point "/boot/efi") (device (uuid "6177-157D" 'fat32)) (type "vfat")) (file-system (mount-point "/") (device "/dev/mapper/cryptroot") (type "ext4") (dependencies %mapped-devices)) %base-file-systems)) ;;; file-systems.scm ends here