aboutsummaryrefslogtreecommitdiff
path: root/tw/home.scm
blob: c5f2934f5646c434d3ef0a9eebc176a250d401df (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
(define-module (tw home)
  #:use-module (ice-9 string-fun)
  #:use-module (gnu)
  #:use-module (gnu home services)
  #:use-module (gnu home services desktop)
  #:use-module (gnu home services shells)
  #:use-module (gnu home services shepherd)
  #:use-module (gnu home services ssh)
  #:use-module ((gnu packages admin) #:select (fdupes smartmontools tree))
  #:use-module ((gnu packages android) #:select (adb fastboot))
  #:use-module ((gnu packages backup) #:select (restic))
  #:use-module ((gnu packages compression) #:select (zip unzip))
  #:use-module ((gnu packages curl) #:select (curl))
  #:use-module ((gnu packages databases) #:select (recutils))
  #:use-module ((gnu packages disk) #:select (ranger))
  #:use-module ((gnu packages dns) #:select (isc-bind))
  #:use-module ((gnu packages file) #:select (file))
  #:use-module ((gnu packages finance) #:select (hledger))
  #:use-module ((gnu packages gnupg) #:select (gnupg))
  #:use-module ((gnu packages graphviz) #:select (graphviz))
  #:use-module ((gnu packages imagemagick) #:select (imagemagick))
  #:use-module ((gnu packages less) #:select (less lesspipe))
  #:use-module ((gnu packages linux) #:select (net-tools))
  #:use-module ((gnu packages lisp) #:select (sbcl))
  #:use-module ((gnu packages maths) #:select (gnuplot))
  #:use-module ((gnu packages music) #:select (beets cmus))
  #:use-module ((gnu packages ncdu) #:select (ncdu ncdu))
  #:use-module ((gnu packages password-utils) #:select (password-store pass-otp))
  #:use-module ((gnu packages pretty-print) #:select (source-highlight))
  #:use-module ((gnu packages pv) #:select (pv))
  #:use-module ((gnu packages python) #:select (python))
  #:use-module ((gnu packages python-xyz) #:select (python-ipython python-pygments python-pillow python-pdftotext))
  #:use-module ((gnu packages rsync) #:select (rsync))
  #:use-module ((gnu packages shells) #:select (zsh))
  #:use-module ((gnu packages shellutils) #:select (zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting zsh-completions))
  #:use-module ((gnu packages ssh) #:select (openssh))
  #:use-module ((gnu packages textutils) #:select (dos2unix))
  #:use-module ((gnu packages tls) #:select (openssl))
  #:use-module ((gnu packages tmux) #:select (tmux))
  #:use-module ((gnu packages version-control) #:select (diffstat git))
  #:use-module ((gnu packages video) #:select (get-iplayer ffmpeg atomicparsley yt-dlp mediainfo))
  #:use-module ((gnu packages vim) #:select (xxd))
  #:use-module ((gnu packages web) #:select (jq))
  #:use-module (gnu services configuration)
  #:use-module (guix gexp)
  #:use-module (guix packages)
  #:use-module (guix records)
  #:use-module (tw services restic)
  #:use-module (tw system))

(define (basic-packages config)
  ;; Basic packages to install everywhere, including servers.
  (list curl diffstat dos2unix fdupes file git gnupg gnuplot graphviz hledger
        imagemagick jq less lesspipe ncdu net-tools openssh openssl password-store
        pass-otp pv python python-ipython recutils restic rsync sbcl smartmontools
        source-highlight tmux tree xxd zip unzip
        adb fastboot beets cmus get-iplayer ffmpeg atomicparsley yt-dlp

        ;; Install only bind-utils like dig, not the full suite.
        (list isc-bind "utils")

        ;; Ranger can do code highlighting using python-pygments and
        ;; image previews in kitty using python-pillow.
        ranger python-pygments python-pillow mediainfo python-pdftotext

        ;; Shell
        zsh zsh-autosuggestions zsh-history-substring-search
        zsh-syntax-highlighting zsh-completions))

(define (xdg-configs config)
  "Configuration files for terminal programs."
  `(("htop/htoprc" ,(local-file "home/files/htoprc"))
    ("lesskey" ,(local-file "home/files/lesskey"))
    ("ranger/rc.conf" ,(local-file "home/files/ranger.conf"))
    ("tmux/tmux.conf" ,(local-file "home/files/tmux.conf"))
    ("user-dirs.locale" ,(plain-file "user-dirs.locale" "C"))  ; Not sure if this is needed. Arch has it.
    ("user-dirs.dirs" ,(local-file "home/files/user-dirs.dirs"))))

(define (non-xdg-configs config)
  "Configuration files for terminal programs that do not follow the XDG base dir spec."
  `((".infokey" ,(local-file "home/files/infokey"))
    (".local/bin/python" ,(file-append python "/bin/python3"))
    ;; With #:recursive? #t, Guix keeps the files' permission bits, i.e. makes them executable.
    (".local/bin/ppscm" ,(local-file "home/files/ppscm" #:recursive? #t))))  ; pretty-print scheme files

(define (zshrc config)
  "Extend the home ZSH service to install my custom zshrc."
  ;; `home-zsh-configuration's are merged, so we can extend `home-zsh-service-type'.
  (home-zsh-extension
   (zshrc (list (local-file "home/files/zshrc")
                (local-file "home/files/prompt.zsh")))))

(define (environment-variables config)
  "Configure my shell environment."
  `( ;; Work at ALICE: Nomad, Consul, Vault.
    ;; Tokens are not defined here as they are stored in pass(1).
    ;; Shell aliases to use tokens are defined in zshrc.
    ("NOMAD_ADDR" . "https://alinomad.cern.ch:443")
    ("NOMAD_CACERT" . "${XDG_CONFIG_HOME}/cern-ca-bundle.crt")
    ("NOMAD_CLIENT_CERT" . "${XDG_CONFIG_HOME}/grid-personal-cert.pem")
    ("NOMAD_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")
    ("CONSUL_HTTP_ADDR" . "https://aliconsul.cern.ch:443")
    ("CONSUL_CACERT" . "${XDG_CONFIG_HOME}/cern-ca-bundle.crt")
    ("CONSUL_CLIENT_CERT" . "${XDG_CONFIG_HOME}/grid-personal-cert.pem")
    ("CONSUL_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")
    ("VAULT_ADDR" . "https://alivault.cern.ch:443")
    ("VAULT_CACERT" . "${XDG_CONFIG_HOME}/cern-ca-bundle.crt")
    ("VAULT_CLIENT_CERT" . "${XDG_CONFIG_HOME}/grid-personal-cert.pem")
    ("VAULT_CLIENT_KEY" . "${XDG_CONFIG_HOME}/grid-personal-key.pem")

    ;; Common environment everywhere.
    ;; Prepend my own binaries to $PATH. These should probably all
    ;; be managed through `home-files-service-type'.
    ("PATH" . "$HOME/.local/bin${PATH:+:}$PATH")
    ;; Default terminal-related applications (except Emacs, which is separate).
    ("PAGER" . "less")
    ;; Guix force-overrides $LESS by default, so force-force it to do what I
    ;; want instead.  `less' reads the `lesskey' file configured above.
    ("GUIX_PAGER" . "env -u LESS less")
    ;; To make LESS_TERMCAP_* variables (set in lesskey) apply to man pages in kitty.
    ("GROFF_NO_SGR" . "1")
    ;; Shell history -- primarily for zsh, but Emacs' eshell uses this too.
    ("HISTSIZE" . "10000000")
    ("LEDGER_FILE" . "$HOME/sync/ledger/ledger.journal")
    ("GTAGSLABEL" . "pygments")
    ;; Disable at-spi-dbus-launcher accessibility service.
    ("NO_AT_BRIDGE" . "1")
    ;; Auto-compilation is annoying and creates a bunch of files that are never cleaned up.
    ("GUILE_AUTO_COMPILE" . "0")

    ;; XDG basedir spec compliance for various programs.
    ;; See: https://wiki.archlinux.org/index.php/XDG_Base_Directory for a list of programs.
    ;; The `home-xdg-base-directories' service (enabled by default) sets $XDG_* variables for us.
    ("ANDROID_EMULATOR_HOME" . "$XDG_DATA_HOME/android-emulator")
    ("ASPELL_CONF" . "per-conf $XDG_CONFIG_HOME/aspell/aspell.conf; home-dir $XDG_DATA_HOME/aspell")
    ("BUP_DIR" . "$XDG_DATA_HOME/bup")
    ("CARGO_HOME" . "$XDG_DATA_HOME/cargo")
    ("ELECTRUMDIR" . "$XDG_DATA_HOME/electrum")
    ("FG_HOME" . "$XDG_DATA_HOME/fgfs")
    ("GETIPLAYERUSERPREFS" . "$XDG_DATA_HOME/get_iplayer")
    ("GTK2_RC_FILES" . "$XDG_CONFIG_HOME/gtk-2.0/gtkrc")
    ("ICEAUTHORITY" . "$XDG_CACHE_HOME/ICEauthority")
    ("INPUTRC" . "$XDG_CONFIG_HOME/readline/inputrc")
    ("IPYTHONDIR" . "$XDG_CONFIG_HOME/ipython")
    ("JUPYTER_CONFIG_DIR" . "$XDG_CONFIG_HOME/jupyter")
    ;; KONAN_DATA_DIR=~/.konan by default; grows to multiple GiB.
    ;; https://discuss.kotlinlang.org/t/change-konan-folder-location/18309
    ("KONAN_DATA_DIR" . "$XDG_CACHE_HOME/konan")
    ("NPM_CONFIG_USERCONFIG" . "$XDG_CONFIG_HOME/npm/npmrc")
    ("PASSWORD_STORE_DIR" . "$XDG_DATA_HOME/password-store")
    ("PYLINTHOME" . "$XDG_CACHE_HOME/pylint")
    ("PYLINTRC" . "$XDG_CONFIG_HOME/pylint/pylintrc")
    ("RECOLL_CONFDIR" . "$XDG_CONFIG_HOME/recoll")
    ("RLWRAP_HOME" . "$XDG_DATA_HOME/rlwrap")
    ("STACK_ROOT" . "$XDG_DATA_HOME/stack")
    ("TMUX_TMPDIR" . "$XDG_RUNTIME_DIR")
    ("WEECHAT_HOME" . "$XDG_CONFIG_HOME/weechat")
    ("XCOMPOSECACHE" . "$XDG_CACHE_HOME/X11/XCompose")
    ("XCOMPOSEFILE" . "$XDG_CONFIG_HOME/X11/XCompose")
    ("ZDOTDIR" . "$XDG_CONFIG_HOME/zsh")
    ("_JAVA_OPTIONS" .
     "$_JAVA_OPTIONS${_JAVA_OPTIONS:+ }-Djava.util.prefs.userRoot=$XDG_CONFIG_HOME/java")))

(define-public tw-home-service-type
  (service-type
   (name 'tw-home)
   (description "Set up a basic, uniform home environment for my machines.")
   (default-value #f)
   (extensions
    (list (service-extension home-profile-service-type basic-packages)
          (service-extension home-zsh-service-type zshrc)
          (service-extension home-xdg-configuration-files-service-type xdg-configs)
          (service-extension home-files-service-type non-xdg-configs)
          (service-extension home-environment-variables-service-type environment-variables)))))


;;; Restic backup helpers

(define-public (restic-pass-key key)
  (restic-password-source (type 'pass) (name key)))

(define-public (restic-vin.wg-repo path)
  (restic-rest-repository
   (username "timo")
   (password (restic-pass-key "computers/vin/restic-server/timo"))
   (hostname "vin.wg")
   (port 8181)
   (path path)))


;;; OpenSSH configuration
;; Since we specify the entire `home-openssh-configuration', we cannot make
;; this a service extension.

(define (wireguardify host)
  (string-replace-substring host ".twilken.net" ".wg"))

(define (make-own-ssh-host host port)
  (openssh-host (name host) (port port) (user "timo")))

(export tw-openssh-configuration)
(define* (tw-openssh-configuration
          #:key
          (default-ssh-key "~/.local/share/ssh-keys/id_ed25519")
          (cern-ssh-key "~/.local/share/ssh-keys/cern_id_rsa"))
  (let ((no-proxy (list (proxy-jump (host-name "none")))))
    (home-openssh-configuration
     (hosts
      ;; Earlier rules take precedence over later ones.
      `(,(openssh-host (name "*.srcf.net") (user "tw466"))
        ;; My own machines
        ,@(map make-own-ssh-host (map car %ssh-ports) (map cdr %ssh-ports))
        ,@(map make-own-ssh-host (map (compose wireguardify car) %ssh-ports) (map cdr %ssh-ports))
        ,(openssh-host (name "*.fritz.box") (proxy (list (proxy-jump (host-name "lud.twilken.net")))))
        ;; Git hosts
        ,(openssh-host
          (name "git.twilken.net")
          (user "git")
          ;; git.twilken.net is a CNAME to lud.twilken.net.
          (port (assoc-ref %ssh-ports "lud.twilken.net")))
        ,(openssh-host (name "github.com") (user "git"))
        ,(openssh-host (name "ssh.github.com") (user "git"))
        ,(openssh-host
          (name "gitlab.cern.ch")
          (user "git")
          (port 7999)
          (proxy no-proxy))
        ;; BitBucket apparently only supports ssh-rsa.
        ,(openssh-host
          (name "bitbucket.org")
          (user "git")
          (host-key-algorithms '("+ssh-rsa"))
          (accepted-key-types '("+ssh-rsa")))
        ;; CERN stuff
        ,(openssh-host
          (name "lxtunnel.cern.ch")
          (proxy no-proxy)    ; avoid ProxyJump loops
          ;; Share a single connection to lxtunnel, to speed up subsequent
          ;; connections to the GPN.  Keep it open for a few minutes after
          ;; the last user connection exits, in case we need it again.
          (extra-content "\
  ControlMaster auto
  ControlPath ${XDG_RUNTIME_DIR}/ssh_mux_%h_%p_%r
  ControlPersist 5m
"))
        ,(openssh-host
          (name "lxplus*.cern.ch")   ; also catch e.g. lxplus9
          (proxy no-proxy)     ; no jump needed
          (extra-content "GSSAPIDelegateCredentials yes"))   ; needed for EOS home mount
        ,(openssh-host
          (name "aiadm.cern.ch")
          (proxy no-proxy)     ; aiadm refuses connections via lxtunnel
          (extra-content "GSSAPIDelegateCredentials yes"))   ; needed for EOS home mount
        ,(openssh-host
          (name "aiatlas*.cern.ch")
          (extra-content "GSSAPIDelegateCredentials yes"))   ; needed for EOS home mount
        ,(openssh-host
          (name "twilkenlaptop.cern.ch")
          (forward-x11? #t)
          (extra-content "GSSAPIDelegateCredentials yes"))
        ,(openssh-host
          (name "*.cern.ch")
          (user "twilken")
          (identity-file cern-ssh-key)
          (proxy (list (proxy-jump (host-name "lxtunnel.cern.ch"))))
          (extra-content  "\
  # Kerberos authentication
  GSSAPIAuthentication yes
  GSSAPIDelegateCredentials no
  PreferredAuthentications gssapi-keyex,gssapi-with-mic,publickey,password,keyboard-interactive
"))
        ;; Default SSH key. This isn't in ~/.ssh as `home-openssh-service-type'
        ;; manages that and might delete keys there.
        ,(openssh-host
          (name "*")
          (identity-file default-ssh-key)
          ;; Remote servers probably don't know about xterm-kitty.
          (extra-content "SetEnv TERM=xterm-256color")))))))