summaryrefslogtreecommitdiff
path: root/systems/curiass.scm
blob: 01aa8acf690f54ecd8aa9225e9d11aa78da994d8 (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 "curiass")
  (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")))))