summaryrefslogtreecommitdiffstats
path: root/guix/jd/desktops/mimir.scm
blob: 742f8c506b1c27fed812a1a0fd4b9a3f948db73b (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
36
(define-module (jd desktops mimir)
  #:use-module (jd desktops base)
  #:use-module (gnu)
  #:use-module (gnu home))

(define home
  (home-environment
   (services %jd-base-home-services)))

(define system
  (operating-system
   (inherit odin-non-free)
   (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))))

(if (getenv "JD_HOME") home system)