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

(operating-system
  (inherit %virt-freya-operating-system)
  (host-name "curiass")
  (initrd-modules (cons* "virtio_scsi"
                         "mptspi"
                         (operating-system-initrd-modules
                           %virt-freya-operating-system)))
  (file-systems (cons* (file-system
                         (mount-point "/")
                         (device (uuid "be5f9a76-8295-4710-95b1-370ae3eb0d95"))
                         (type "btrfs"))
                       (file-system
                         (mount-point "/boot")
                         (device (uuid "ACB1-EE58"
                                       'fat32))
                         (type "vfat"))
                       (operating-system-file-systems
                         %virt-freya-operating-system)))
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (target "/dev/sda"))))