summaryrefslogtreecommitdiff
path: root/systems/mcdowell.scm
blob: 8b9d3ade6b53bddf4f44698ff284ab6ef19b8a85 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(define-module (systems mcdowell)
  #:use-module (gnu services)		; service
  #:use-module (gnu services guix)	; guix-home-service-type
  #:use-module (gnu system keyboard)    ; keyboard-layout
  #:use-module (machines portable-bios)	; bootloader-configuration*
					; file-systems*
					; firmware*
					; hardware-groups
					; initrd*
					; kernel*
                                        ; swap-devices*
  #:use-module (suweren system)		; %suweren-operating-system
  #:use-module (users id1000)		; uid1000-account
					; uid1000-home-environment
					; uid1000-name
  )

;; ;; string
;; (define host-name*
;;   "mcdowell")

;; ;; (record user-account)
;; (define users*
;;   (list uid1000-account))

;; ;; record operating-system
;; (define (operating-system*)
;;   (use-modules (machines portable-bios)
;; 	       (suweren system))
;;   (let* ((home-environments `((,uid1000-name ,(uid1000-home-environment host-name*))))

;; 	 (guix-home (service guix-home-service-type
;; 			     home-environments))

;; 	 (keyboard-layout* (keyboard-layout "pl"))
;; 	 (services* (list guix-home))
;; 	 (timezone* "Europe/Warsaw")
;; 	 ;; (locale* "en_US.utf8")
;; 	 )
;;     ((@ (gnu system) operating-system)
;;      (inherit %suweren-operating-system)
;;      (kernel kernel*)
;;      (bootloader (bootloader-configuration* keyboard-layout*))
;;      (keyboard-layout keyboard-layout*)
;;      (initrd initrd*)
;;      (firmware firmware*)
;;      (host-name host-name*)
;;      (file-systems (file-systems* host-name*))
;;      (swap-devices (swap-devices* host-name*))
;;      (users users*)
;;      (timezone timezone*)
;;      ;; locale*
;;      (services services*))))

;; (define-public operating-system*
;;   (operating-system*))

;; operating-system*