summaryrefslogtreecommitdiff
path: root/systems/shinji.scm
blob: 54b21ecd13bdef6d099b65aec980c3a2059d06c3 (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
(use-modules (freya system)
             (gnu))

(operating-system
  (inherit %desktop-freya-operating-system)
  (host-name "shinji")
  (mapped-devices (list (mapped-device
                          (source (uuid
                                    "ad489bfa-4280-44ea-8ad2-60347b516d60"))
                          (target "root")
                          (type luks-device-mapping))))
  (swap-devices (list (swap-space
                        (target (uuid
                                  "57caa02d-8569-43e3-8bf9-09dd6f02b191")))))
  (file-systems (cons* (file-system
                         (mount-point "/")
                         (device "/dev/mapper/root")
                         (type "btrfs")
                         (dependencies mapped-devices))
                       (file-system
                         (mount-point "/boot/efi")
                         (device (uuid "6F93-6A0B"
                                       'fat32))
                         (type "vfat"))
                       (operating-system-file-systems
                         %desktop-freya-operating-system))))