summaryrefslogtreecommitdiff
path: root/guix/hermes.scm
blob: e2f1a17ba9b85bed20af13e23253b99c1cc7b1a2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

(define-module (hermes)
  #:use-module (gnu)
  #:use-module (system-create))

(use-package-modules file-systems)

(system-create #:hostname "hermes"
	       #:filesystem (cons* (file-system
				    (mount-point "/boot/efi")
				    (device (uuid "1F4A-0DF0"
						  'fat32))
				    (type "vfat"))
				   (file-system
				    (mount-point "/")
				    (device (uuid
					     "b4664996-7c96-4b8c-9fe7-26cda3021c9d"
					     'ext4))
				    (type "ext4"))
				   %base-file-systems)
	       #:swap-uuid "1b620436-7874-40d3-b580-7d2358a9f28e")