summaryrefslogtreecommitdiffstats
path: root/hipis.scm
blob: e3f4b9399d8fa055fe90a8fce276c621cd07eb08 (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
(define-module (hipis)
  #:use-module (guix)
  #:use-module (gnu)
  #:use-module (gnu system)
  #:use-module (gnu packages version-control)
  #:use-module (gnu services)
  #:use-module (gnu services security)
  #:use-module (gnu services networking)
  #:use-module (gnu services ssh)
  #:use-module (gnu services cgit)
  #:use-module (gnu services version-control)
  #:use-module (gnu services certbot)
  #:use-module (gnu services web)
  #:use-module (gnu services messaging)

  #:use-module (hipis services web))

(define jdlugosz-ssh-pub
  (local-file "./jdlugosz.pub"))

(define %nginx-deploy-hook
  (program-file
   "nginx-deploy-hook"
   #~(let ((pid (call-with-input-file "/var/run/nginx/pid" read)))
       (kill pid SIGHUP))))

(define (letsencrypt-certificate domain)
  (string-append "/etc/letsencrypt/live/" domain "/fullchain.pem"))

(define (letsencrypt-key domain)
  (string-append "/etc/letsencrypt/live/" domain "/privkey.pem"))

(define hipis
  (operating-system
   (locale "en_US.utf8")
   (timezone "Europe/Warsaw")
   (keyboard-layout (keyboard-layout "pl"))
   (host-name "hipis")

   (users (cons*
	   (user-account
	    (name "jakub")
	    (comment "Jakub Dlugosz")
	    (group "users")
	    (home-directory "/home/jakub")
	    (password (crypt "Init14ll-p455w0rd#$" "$6$abc"))
	    (supplementary-groups '("wheel"  ;; sudo
				    "netdev" ;; network devices
				    "tty"
				    "input")))
	   %base-user-accounts))

   (packages (append
	      (specifications->packages '("emacs-no-x-toolkit"
					  "exfat-utils"
					  "git"
					  "nss-certs"
					  "nmap"
					  "curl"))
	      %base-packages))

   (services (cons*
	      (service fail2ban-service-type
		       (fail2ban-configuration
			(extra-jails
			 (list
			  (fail2ban-jail-configuration
			   (name "sshd")
			   (enabled? #t))))))

	      (service openssh-service-type
		       (openssh-configuration
			(permit-root-login 'prohibit-password)
			(allow-empty-passwords? #f)
			(password-authentication? #f)
			(authorized-keys
			 `(("jakub" ,jdlugosz-ssh-pub)))))

	      (service static-networking-service-type
		       (list (static-networking
			      (addresses
			       (list (network-address
				      (device "eth0")
				      (value "193.200.51.92/27"))))
			      (routes
			       (list (network-route
				      (destination "default")
				      (gateway "193.200.51.89"))))
			      (name-servers '("195.74.91.4 " "193.200.50.51")))

			     %loopback-static-networking))

	      (service gitolite-service-type
		       (gitolite-configuration
			(admin-pubkey jdlugosz-ssh-pub)
			(group "fcgiwrap")
			(rc-file
			 (gitolite-rc-file (umask #o0027)
					   ;; Allow to set any configuration key
					   (git-config-keys ".*")))))

	       ;;; Note to myself:
	       ;;;
	       ;;; After fresh installation, nginx wont be working,
	       ;;; because the ssl certifications aren't generated yet,
	       ;;; you have to comment out the cgit and nginx service type
	       ;;; and after system reconfigure, run this script:
	       ;;; /var/lib/certbot/renew-certicates
	       ;;; after it, new certificates should appear in:
	       ;;; /etc/letsencrypt/live/{domain} directory
	       ;;; now you can uncomment cgit and nginx service type
	       ;;; and after system reconfigure everything should be up and running.
	      (service certbot-service-type
		       (certbot-configuration
			(email "me@jdlugosz.com")
			(certificates
			 (list
			  (certificate-configuration
			   (domains '("jdlugosz.com" "git.jdlugosz.com"))
			   (deploy-hook %nginx-deploy-hook))))))

	      (service cgit-service-type
		       (cgit-configuration
			(enable-commit-graph? #t)
			(enable-html-serving? #t)
			(remove-suffix? #t)
			(nocache? #t)
			(enable-log-filecount? #t)
			(enable-log-linecount? #t)
			(side-by-side-diffs? #t)
			(enable-git-config? #t)
			(section-from-path 1)
			(repository-directory "/var/lib/gitolite/repositories/public/")
			(source-filter (file-append cgit "/lib/cgit/filters/syntax-highlighting.py"))
			(about-filter (file-append cgit "/lib/cgit/filters/about-formatting.sh"))
			(max-stats "year")
			(snapshots '("tar.gz" "zip"))
			(readme "CGIT README")

			(nginx
			 (list
			  (nginx-server-configuration
			   (inherit %cgit-configuration-nginx)
			   (server-name '("git.jdlugosz.com"))
			   (listen '("443 ssl"))
			   (ssl-certificate (letsencrypt-certificate "jdlugosz.com"))
			   (ssl-certificate-key (letsencrypt-key "jdlugosz.com")))))))

	      (service quassel-service-type)

	      (service hwp-service-type
		       (hwp-site-configuration
			(name "hwp-base")
			(domains '("jdlugosz.com"))
			(source-url "https://git.jdlugosz.com/hipis/hipis-website/snapshot/hipis-website-master.tar.gz")
			(ssl-certificate (letsencrypt-certificate "jdlugosz.com"))
			(ssl-certificate-key (letsencrypt-key "jdlugosz.com"))))

	      (modify-services %base-services
			       (delete static-networking-service-type))))

   (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (targets (list "/dev/sda"))
                (keyboard-layout keyboard-layout)))
   (initrd-modules (append '("virtio_scsi") %base-initrd-modules))
   (swap-devices (list (swap-space
                        (target (uuid
                                 "1510f063-9936-494a-97ee-488fda7ff0fe")))))

   ;; The list of file systems that get "mounted".  The unique
   ;; file system identifiers there ("UUIDs") can be obtained
   ;; by running 'blkid' in a terminal.
   (file-systems (cons* (file-system
                         (mount-point "/")
                         (device (uuid
                                  "21ea8fcd-d031-4f00-9e57-0bd4ed5b0230"
                                  'ext4))
                         (type "ext4")) %base-file-systems))))

hipis