blob: 80ddb88461c28a2611d4f9bddbbe80669f96bb21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
(define-module (jd desktops mimir)
#:use-module (jd desktops base)
#:use-module (gnu))
(operating-system
(inherit odin)
(host-name "mimir")
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))))
(swap-devices (list (swap-space
(target (uuid
"658793cb-d374-426e-bcd5-00d032b003a0")))))
(file-systems (cons* (file-system
(mount-point "/boot/efi")
(device (uuid "64D8-134F"
'fat32))
(type "vfat"))
(file-system
(mount-point "/")
(device (uuid
"1f9304b0-5623-4248-ab66-534b5ac85876"
'ext4))
(type "ext4")) %base-file-systems)))
|