summaryrefslogtreecommitdiff
path: root/systems/cuirass.scm
blob: 4b3ff320bb11edf2d0774d13c18b98e08a9e2025 (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 %virt-freya-operating-system)
  (host-name "cuirass")
  (swap-devices (list (swap-space
			(target (uuid
				  "8ffa6d73-06e9-4dc5-9b15-569b3b176dbc")))))
  (file-systems (cons* (file-system
                         (mount-point "/")
                         (device (uuid "fae7deed-d630-40a1-adac-87f49b431ad4"))
                         (type "btrfs"))
                       (file-system
                         (mount-point "/boot")
                         (device (uuid "027A-4AA1"
                                       'fat32))
                         (type "vfat"))
                       (operating-system-file-systems
                         %virt-freya-operating-system)))
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (targets '("/dev/sda")))))