Fix bootloader config
systems/sybil.scm
28 | 28 | (keyboard-layout (keyboard-layout "fr" "bepo")) | |
29 | 29 | (bootloader | |
30 | 30 | (bootloader-configuration | |
31 | - | (target "/boot/efi") | |
31 | + | (targets (list "/boot/efi")) | |
32 | 32 | (bootloader grub-efi-bootloader) | |
33 | - | (keyboard-layout keyboard-layout))) | |
33 | + | (keyboard-layout keyboard-layout))) | |
34 | 34 | (mapped-devices | |
35 | 35 | (list (mapped-device | |
36 | 36 | (source | |
37 | - | (uuid "7f0ef292-5d1f-4cde-8a59-074178c6903d")) | |
37 | + | (uuid "4d5c6df3-622f-41f4-85ee-c61be5538b6f")) | |
38 | 38 | (target "cryptroot") | |
39 | 39 | (type luks-device-mapping)))) | |
40 | 40 | (file-systems | |
… | |||
49 | 49 | (dependencies mapped-devices)) | |
50 | 50 | %base-file-systems)) | |
51 | 51 | (users (map | |
52 | - | (lambda (user) | |
53 | - | (if (equal? (user-account-name user) "tyreunom") | |
54 | - | (user-account | |
55 | - | (inherit user) | |
56 | - | (supplementary-groups | |
57 | - | (cons* "libvirt" "kvm" | |
58 | - | (user-account-supplementary-groups user)))) | |
59 | - | user)) | |
60 | - | (operating-system-users system))) | |
52 | + | (lambda (user) | |
53 | + | (if (equal? (user-account-name user) "tyreunom") | |
54 | + | (user-account | |
55 | + | (inherit user) | |
56 | + | (supplementary-groups | |
57 | + | (cons* "libvirt" "kvm" | |
58 | + | (user-account-supplementary-groups user)))) | |
59 | + | user)) | |
60 | + | (operating-system-users system))) | |
61 | 61 | (services | |
62 | 62 | (cons* | |
63 | - | (service libvirt-service-type | |
64 | - | (libvirt-configuration | |
65 | - | (unix-sock-group "libvirt"))) | |
66 | - | (service virtlog-service-type | |
67 | - | (virtlog-configuration | |
68 | - | (max-clients 1000))) | |
69 | - | desktop-services)))) | |
63 | + | (service libvirt-service-type | |
64 | + | (libvirt-configuration | |
65 | + | (unix-sock-group "libvirt"))) | |
66 | + | (service virtlog-service-type | |
67 | + | (virtlog-configuration | |
68 | + | (max-clients 1000))) | |
69 | + | desktop-services)))) |