summaryrefslogtreecommitdiff
path: root/systems/ayase.scm
blob: 35c4c7c034cca5bfcb02ad88f0e6bcfa02644596 (about) (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
(define-module (systems ayase)
  ;; uuid
  #:use-module (gnu)

  ;; grub
  #:use-module (gnu packages bootloaders)

  ;; gnome-boxes
  #:use-module (gnu packages gnome)

  ;; pinentry-qt
  ;; pinentry-tty
  #:use-module (gnu packages gnupg)

  ;; kgpg
  #:use-module (gnu packages kde-pim)

  ;; python-pip
  #:use-module (gnu packages python-build)

  ;; ruby
  #:use-module (gnu packages ruby)

  ;; profile-service-type
  ;; service
  ;; simple-service
  #:use-module (gnu services)

  ;; guix-home-service-type
  #:use-module (gnu services guix)

  ;; tor-service-type
  #:use-module (gnu services networking)

  ;; openssh-service-type
  #:use-module (gnu services ssh)

  ;; libvirt-service-type
  #:use-module (gnu services virtualization)

  ;; uid1000-account
  ;; uid1000-home-environment
  ;; uid1000-name
  #:use-module (users id1000)

  ;; linux
  ;; linux-firmware
  #:use-module (nongnu packages linux)

  ;; microcode-initrd
  #:use-module (nongnu system linux-initrd)

  ;; %sudoers-specification*
  #:use-module (suweren commons sudoers)

  ;; %distribution-services
  #:use-module (suweren services))

;; string
(define host-name
  "ayase")

;;;

;; #<file-system-label>
(define (swap-label number)
  (file-system-label (string-append host-name
				    "-swap"
				    number)))

;;;

;; <swap-space>
(define swap-1
  (swap-space (target (swap-label "-1"))))

;; <swap-space>
(define swap-2
  (swap-space (target (swap-label "-2"))))

;;;

;; (list <swap-space>)
(define swap-devices
  (list swap-1
	swap-2))

;; (list <user-account>)
(define users
  (append %base-user-accounts
	  (list uid1000-account)))

;;;

;; record* operating-system
(define-public operating-system*
  (let* ((bootloader-targets (list "/boot/efi"))
	 (efi-filesystem-id (uuid "B4FB-CBD9" 'fat32))
	 (home-environments `((,uid1000-name ,(uid1000-home-environment host-name))))
	 (root-filesystem-id (uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c"))

	 (efi-partition (file-system (mount-point "/boot/efi")
				     (device efi-filesystem-id)
				     (type "vfat")))
	 (home-services (service guix-home-service-type
				 home-environments))
	 (root-partition (file-system (mount-point "/")
				      (device root-filesystem-id)
				      (type "ext4")))

	 (ayase-file-systems (list root-partition
				   efi-partition))
	 (home-services (list home-services))
	 (keyboard-layout (keyboard-layout "pl"))
	 (system-services (list (service libvirt-service-type)
				(service openssh-service-type)
				(service tor-service-type)
				(simple-service 'gc-workaround
						profile-service-type
						(list grub
						      python-pip
						      ruby))
				(simple-service 'system-packages
						profile-service-type
						(list gnome-boxes
						      kgpg
						      pinentry-qt
						      pinentry-tty))))

	 (bootloader (bootloader-configuration (bootloader grub-efi-bootloader)
					       (targets bootloader-targets)
					       (keyboard-layout keyboard-layout)))
	 (file-systems (append %base-file-systems
			       ;; %distribution-file-systems
			       ayase-file-systems))
	 (firmware (list linux-firmware))
	 (packages (append %base-packages
			   ;; %distribution-packages
			   ;; system-packages
			   ))
	 (services (append %distribution-services
			   home-services
			   system-services)))
    (operating-system (kernel linux)
		      (bootloader bootloader)
                      (keyboard-layout keyboard-layout)
		      (initrd microcode-initrd)
		      (firmware firmware)
                      (host-name host-name)
                      (file-systems file-systems)
                      (swap-devices swap-devices)
                      (users users)
                      (timezone "Europe/Warsaw")
                      (locale "pl_PL.utf8")
                      (services services)
		      (sudoers-file %sudoers-specification*))))

operating-system*