summaryrefslogtreecommitdiff
path: root/aisaka.org
blob: 2535439d1703b865bf04dadbaf6f0d15d15dd9c9 (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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
#+title: Configuration of the Aisaka computer -*- mode: org -*-
#+startup: overview
#+property: header-args:scheme :noweb yes
#+property: header-args:scheme+ :noweb-prefix no

* TODO LIBREBOOT

The first layer of computing is the firmware.  The Lenovo Thinkpad X200 has
a free Libreboot firmware installed.  It is a good idea to keep it up to date.

** TODO Flashrom

Flashrom program is needed to write the computer firmware.  The
program needs a relaxed kernel security feature.

#+begin_src scheme :noweb-ref flashrom-package
  (service
   (service-type
    (name 'flashrom-package)
    (extensions
     `(,(service-extension home-profile-service-type
                           (lambda (_)
                             (map specification->package
                                  '("flashrom"))))))
    (description "Flashrom installation.")
    (default-value #f)))
#+end_src

* TODO File Systems

This system has a very simple file system - a boot partition, main partition
for everything else and swap.  The main partition is encrypted.

** Mapped Devices

Data encryption layer, password protected.  The LUKS encryption type is
used.

#+begin_src scheme :noweb-ref luks
  (mapped-device
   (source (uuid "887ac37f-2919-41a0-a62a-e1ff5ea2d6cc"))
   (target "aisaka-root")
   (type luks-device-mapping))
#+end_src

** File Systems

The data is split into an unencrypted boot partition and encrypted root
filesystem.

*** Root File System

The root filesystem is mounted on the encryption layer.  Its type is
BTRFS.

#+begin_src scheme :noweb-ref rootfs
  (file-system
   (mount-point "/")
   (device "/dev/mapper/aisaka-root")
   (type "btrfs")
   (dependencies mapped-devices))
#+end_src

*** Boot File System

The boot partition is on EXT4 filesystem.

#+begin_src scheme :noweb-ref bootfs
  (file-system
   (mount-point "/boot")
   (device (uuid "4f77b5fc-56ad-43ae-b6ec-e5adc8c48587"))
   (type "ext4"))
#+end_src

** Swap Devices

Swap takes half the storage space in order to facilitate edge cases of
memory without overprovisioning, as well as to prolog the lifetime of SSD.

#+begin_src scheme :noweb-ref swap
  (swap-space (target (uuid "73bed3f9-be07-40ad-a228-577cd24f2e1d")))
#+end_src

* TODO System Servers

** TODO Secure Shell

#+begin_src scheme :noweb-ref ssh-server :tangle services/ssh-server.scm
  (define-module (ssh-server)
    #:use-module (gnu)
    #:use-module (gnu home)
    #:use-module (gnu home services)
    #:use-module (gnu services ssh))

  <<ssh-service>>

  <<ssh-configuration>>
#+end_src

*** TODO SSH Installation

#+begin_src scheme :noweb-ref ssh-service
  (define-public ssh-service
    (service openssh-service-type))
#+end_src

*** TODO SSH Configuration

#+begin_src scheme :noweb-ref ssh-configuration
  (define-public ssh-configuration
    (simple-service 'ssh-configuration* home-files-service-type
		    `((".ssh/config" ,(local-file "../ssh.config")))))
#+end_src

* TODO Desktop Environment

Sway is the currently chosen operating environment.

** TODO Sway Window Manager

The Sway Window Manager consists of Sway packages and relevant configurations.

#+begin_src scheme :noweb-ref sway :tangle services/sway.scm
  (add-to-load-path "./services")

  (define-module (sway)
    #:use-module (gnu)
    #:use-module (gnu home)
    #:use-module (gnu home services)
    #:use-module (gnu home services shells))

  <<sway-packages>>

  <<sway-configuration>>
#+end_src

*** TODO Sway Installation

#+begin_src scheme :noweb-ref sway-packages
  (define-public sway-packages
    (service
     (service-type
      (name 'sway-packages)
      (extensions
       `(,(service-extension home-profile-service-type
			     (lambda (_)
			       (map specification->package
				    '("sway"
				      "waybar"))))))
      (description "Sway Window Manager installation.")
      (default-value #f))))
#+end_src

*** TODO Sway configuration

#+begin_src scheme :noweb-ref sway-configuration
  (define-public sway-configuration
    (simple-service 'configuration-files home-files-service-type
		    `((".config/sway/config" ,(local-file "../sway.config"))
		      (".config/waybar/config" ,(local-file "../waybar.config")))))
#+end_src

* imported configuration dump
** TODO System configuration

#+begin_src scheme :noweb-ref system-dump :tangle system-configuration.scm
  (add-to-load-path "./services")

  (define-module (aisaka-system-configuration)
    #:use-module (gnu)
    #:use-module (gnu packages cups)
    #:use-module (gnu packages finance)
    #:use-module (gnu services cups)
    #:use-module (gnu services configuration)
    #:use-module (gnu services desktop)
    #:use-module (gnu services networking)
    #:use-module (gnu services ssh)
    #:use-module (gnu services xorg)
    #:use-module (ssh-server))

  (define keyboard-layout
    (keyboard-layout "pl"))

  (operating-system
   (locale "pl_PL.utf8")
   (timezone "Europe/Warsaw")
   (keyboard-layout keyboard-layout)
   (host-name "aisaka")
   (users (cons* (user-account (name "marek")
                               (comment "Marek Paśnikowski")
                               (group "users")
                               (home-directory "/home/marek")
                               (supplementary-groups '("audio"
                                                       "netdev"
                                                       "tor"
                                                       "video"
                                                       "wheel")))
                 %base-user-accounts))
   (packages (append (map (compose list
                                   specification->package+output)
                          '("netcat-openbsd"
                            "nss-certs"
                            "ntfs-3g"
                            "trezord"
                            "trezord-udev-rules"))
                     %base-packages))
   (services (cons* ssh-service
                    (service cups-service-type
                             (cups-configuration (extensions `(,cups-filters
                                                               ,epson-inkjet-printer-escpr))
                                                 (web-interface? #t)))
                    (service gnome-desktop-service-type)
                    (service tor-service-type
                             (tor-configuration (config-file (local-file "torrc"))
                                                (control-socket? #t)))
                    (udev-rules-service 'trezord trezord-udev-rules)
                    (modify-services %desktop-services
                                     (elogind-service-type
                                      configuration =>
                                      (elogind-configuration
                                       (inherit configuration)
                                       (handle-lid-switch 'ignore)))
                                     ;; (delete gdm-service-type)
                                     )))
   (bootloader (bootloader-configuration (bootloader grub-bootloader)
                                         (targets '("/dev/sda"))
                                         (keyboard-layout keyboard-layout)))
   (swap-devices
    `(,<<swap>>))
   (mapped-devices
    `(,<<luks>>))
   (file-systems
    (append %base-file-systems
            `(,<<rootfs>>
              ,<<bootfs>>))))
#+end_src

** TODO Home configuration

#+begin_src scheme :noweb-ref home-dump :tangle home-configuration.scm
  (add-to-load-path "./services")

  (define-module (aisaka-home-configuration)
    #:use-module (gnu home)
    #:use-module (gnu home services)
    #:use-module (gnu home services shells)
    #:use-module (gnu packages)
    #:use-module (gnu services)
    #:use-module (guix gexp)
    #:use-module (ssh-server)
    #:use-module (sway))

  (define allow-downgrades
    "--allow-downgrades ")

  (define config-prefix
    "/home/marek/src/guix-config/")

  (define pull-guix
    "guix pull ")

  (define pull-guix-
    (string-append pull-guix
                   allow-downgrades
                   "--disable-authentication "))

  (define guix-home
    "guix home reconfigure ")

  (define home-configuration
    "home-configuration.scm ")

  (define reconfigure-home
    (string-append guix-home
                   config-prefix
                   home-configuration))

  (define reconfigure-home-
    (string-append reconfigure-home
                   allow-downgrades))

  (define guix-system
    "sudo guix system reconfigure ")

  (define system-configuration
    "system-configuration.scm ")

  (define reconfigure-system
    (string-append guix-system
                   config-prefix
                   system-configuration))

  (define reconfigure-system-
    (string-append reconfigure-system
                   allow-downgrades))

  (define and
    "&& ")

  (define system-update
    (string-append pull-guix
                   and
                   reconfigure-system
                   and
                   reconfigure-home))

  (define system-update-
    (string-append pull-guix-
                   and
                   reconfigure-system-
                   and
                   reconfigure-home-))

  (home-environment
   (packages (map (compose list
                           specification->package+output)
                  '("adwaita-icon-theme"
                    "alacritty"
                    "clamav"
                    "cpupower"
                    "dconf-editor"
                    "dmenu"                  
                    "emacs"
                    "emacs-aggressive-indent"
                    "emacs-eldoc"
                    "emacs-geiser"
                    "emacs-geiser-guile"
                    "emacs-nov-el"
                    "emacs-org-auto-tangle"
                    "emacs-org-contacts"
                    "emacs-org-contrib"
                    "font-google-noto"
                    "git"
                    "git-lfs"
                    "gnome-tweaks"
                    "gnupg"
                    "guile"
                    "guile-spec"
                    "hicolor-icon-theme"
                    "icecat"
                    "jami"
                    "libadwaita"
                    "libreoffice"
                    "nm-tray"
                    "pwgen"
                    "seahorse"
                    "sicp"
                    "strace"
                    "trezor-agent"
                    "unzip"
                    "zip")))
   (services
    `(,<<flashrom-package>>
      ,ssh-configuration
      ,sway-configuration
      ,sway-packages
      ,(service home-bash-service-type
                (home-bash-configuration
                 (environment-variables '(("EDITOR" . "emacs -nw")
                                          ("LIBGL_ALWAYS_SOFTWARE" . "1")
                                          ("NVM_DIR" . "$HOME/src/nvm")
                                          ("GUILE_AUTO_COMPILE" . "0")))
                 (aliases `(("grep" . "grep --color=auto ")
                            ("ll" . "ls -l ")
                            ("ls" . "ls -p --color=auto ")
                            ("pull-guix" . ,pull-guix)
                            ("pull-guix-" . ,pull-guix-)
                            ("reconfigure-home" . ,reconfigure-home)
                            ("reconfigure-home-" . ,reconfigure-home-)
                            ("reconfigure-system" . ,reconfigure-system)
                            ("reconfigure-system-" . ,reconfigure-system-)
                            ("system-update" . ,system-update)
                            ("system-update-" . ,system-update-)))
                 (bash-profile `(,(local-file "bash_profile")))
                 (bashrc `(,(local-file "bashrc")))))
      ,(simple-service 'configuration-files
                       home-files-service-type
                       `((".config/git/config" ,(local-file "git.config"))
                         (".config/guix/shell-authorized-directories"
                          ,(local-file "guix-shell-authorized-directories"))
                         (".emacs" ,(local-file "emacs.el")))))))
#+end_src