blob: fceee818d17c25089b831f3f5c0374b99209ab43 (
about) (
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 (evilgnu)
#:use-module (system)
#:use-module (gnu))
(operating-system
(inherit base-operating-system)
(host-name "evilgnu")
(file-systems (cons* (file-system
(mount-point "/boot/efi")
(device (uuid "021E-83B3"
'fat32))
(type "vfat"))
(file-system
(mount-point "/")
(device (uuid
"b0147644-6bbf-41b8-85c5-0a4c3fce042b"
'ext4))
(type "ext4"))
(file-system
(mount-point "/home")
(device (uuid
"4cf08e5e-47c3-41b4-bd05-abbe5e6f5590"
'ext4))
(type "ext4")) %base-file-systems)))
|