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

(operating-system
  (inherit base-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"))
                       %freya-file-systems)))