summaryrefslogtreecommitdiffstats
path: root/guix/jd/desktops/mimir.scm
blob: 185df08d1b11b94e4e230b0a64262d0049e915ef (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
31
32
33
34
35
(define-module (jd desktops mimir)
  #:use-module (jd desktops base)
  #:use-module (gnu)
  #:use-module (gnu services desktop))


(operating-system
 (inherit odin-non-free)
 (host-name "mimir")

 (services (cons
	    (service xfce-desktop-service-type)
	    %jd-base-services))
 
 (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)))