;;; 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 "671c8094-c8cd-47f9-8332-25513f16917b")) (target "hidden") (type luks-device-mapping)))) (define %file-systems (cons* (file-system (mount-point "/boot/efi") (device (uuid "1A7A-026F" 'fat32)) (type "vfat")) (file-system (mount-point "/home") (device "/dev/mapper/hidden") (type "ext4") (dependencies %mapped-devices)) (file-system (mount-point "/") (device (uuid "0a0b9520-308f-4072-a62b-b91ffacdc5b0" 'ext4)) (type "ext4")) %base-file-systems)) ;;; file-systems.scm ends here