summaryrefslogtreecommitdiff
path: root/systems/kaworu.scm
blob: 77625deb6a93b89329f94df63af26c61108db1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(use-modules (freya system)
	     (gnu))

(operating-system
  (inherit %desktop-freya-operating-system)
  (host-name "kaworu")
  (mapped-devices (list (mapped-device
			  (source (uuid
				    "89257280-202b-4565-b832-89f160d5e4e2"))
                          (target "cryptroot")
                          (type luks-device-mapping))))
  (file-systems (cons* (file-system
			 (mount-point "/")
                         (device "/dev/mapper/cryptroot")
                         (type "btrfs")
                         (dependencies mapped-devices))
                       (file-system
                         (mount-point "/boot/efi")
                         (device (uuid "099A-D668"
                                       'fat32))
                         (type "vfat"))
                       (operating-system-file-systems
                         %desktop-freya-operating-system))))