summaryrefslogtreecommitdiffstats
path: root/guix/jd/desktops/mimir.scm
blob: a635831369217b588ff2b3770630bb007a02e1f6 (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
25
26
27
28
29
30
(define-module (jd desktops mimir)
  #:use-module (jd desktops base)
  #:use-module (gnu))


(operating-system
 (inherit odin)
 (host-name "mimir")
 
 (bootloader (bootloader-configuration
	      (bootloader grub-efi-bootloader)
	      (targets (list "/boot/efi"))))

 
 (swap-devices (list (swap-space
		      (target (uuid
			       "658793cb-d374-426e-bcd5-00d032b003a0")))))

 (file-systems (cons* (file-system
		       (mount-point "/boot/efi")
		       (device (uuid "64D8-134F"
                                     'fat32))
		       (type "vfat"))
		      (file-system
		       (mount-point "/")
		       (device (uuid
                                "1f9304b0-5623-4248-ab66-534b5ac85876"
                                'ext4))
		       (type "ext4")) %base-file-systems)))