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

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

(use-package-modules file-systems)

(system-base "hermes"
	     (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)
	     "1b620436-7874-40d3-b580-7d2358a9f28e")