Reinstalling sybil on a new disk
systems/sybil.scm
24 | 24 | (let ((system (tyreunom-desktop-os "sybil"))) | |
25 | 25 | (operating-system | |
26 | 26 | (inherit system) | |
27 | + | (keyboard-layout (keyboard-layout "fr" "bepo")) | |
27 | 28 | (bootloader | |
28 | 29 | (bootloader-configuration | |
29 | 30 | (target "/boot/efi") | |
30 | - | (bootloader grub-efi-bootloader))) | |
31 | + | (bootloader grub-efi-bootloader) | |
32 | + | (keyboard-layout keyboard-layout))) | |
33 | + | (mapped-devices | |
34 | + | (list (mapped-device | |
35 | + | (source | |
36 | + | (uuid "7f0ef292-5d1f-4cde-8a59-074178c6903d")) | |
37 | + | (target "cryptroot") | |
38 | + | (type luks-device-mapping)))) | |
31 | 39 | (file-systems | |
32 | 40 | (cons* (file-system | |
33 | - | (device (file-system-label "guix")) | |
34 | - | (mount-point "/") | |
35 | - | (type "ext4")) | |
36 | - | (file-system | |
37 | - | (device (uuid "88ED-35AA" 'fat)) | |
38 | 41 | (mount-point "/boot/efi") | |
42 | + | (device (uuid "C62C-8291" 'fat32)) | |
39 | 43 | (type "vfat")) | |
44 | + | (file-system | |
45 | + | (mount-point "/") | |
46 | + | (device "/dev/mapper/cryptroot") | |
47 | + | (type "ext4") | |
48 | + | (dependencies mapped-devices)) | |
40 | 49 | %base-file-systems)) | |
41 | 50 | (services desktop-services))) |