blob: 656c6225b87073c3aa854a07abb0e5d1d834c9e0 (
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
|
(define-module (jd desktops base)
#:use-module (jd packages vpn)
#:use-module (jd home services polkit)
#:use-module (jd home services desktop)
#:use-module (jd services polkit)
#:use-module (gnu)
#:use-module (gnu home)
#:use-module (gnu home services)
#:use-module (gnu home services desktop)
#:use-module (gnu home services gnupg)
#:use-module (gnu home services xdg)
#:use-module (gnu services)
#:use-module (nongnu packages linux)
#:use-module (nongnu system linux-initrd))
(use-package-modules wm gnome gnupg networking)
(use-service-modules cups desktop networking ssh xorg
docker virtualization pm sound dbus)
(define-public %jd-base-home-services
(list
(service home-xdg-mime-applications-service-type
(home-xdg-mime-applications-configuration
(default '((inode/directory . emacs-desktop.desktop)
(application/pdf . emacs-desktop.desktop)))
(desktop-entries
(list (xdg-desktop-entry
(file "emacs-desktop")
(name "Emacs")
(type 'application)
(config
'((exec . "emacsclient -a emacs %u"))))))))
(service home-redshift-service-type
(home-redshift-configuration
(location-provider 'manual)
(latitude 51.919438)
(longitude 19.145136))) ;; Poland
(simple-service 'some-useful-env-vars-service
home-environment-variables-service-type
`(("GTK_THEME" . "Adwaita:dark")
("VISUAL" . "emacsclient")
("EDITOR" . "emacsclient")
("PATH" . "$HOME/.bin:$HOME/.npm-global/bin:$PATH")
("XDG_DATA_DIRS" . "$XDG_DATA_DIRS:$HOME/.local/share/flatpak/exports/share")))
(service home-gpg-agent-service-type
(home-gpg-agent-configuration
(pinentry-program
(file-append pinentry "/bin/pinentry"))
(ssh-support? #t)
(default-cache-ttl 28800)
(max-cache-ttl 28800)
(default-cache-ttl-ssh 28800)
(max-cache-ttl-ssh 28800)))
(service home-dbus-service-type)
(service home-desktop-service-type)
(service home-polkit-gnome-service-type)))
(define-public %jd-base-user-accounts
(cons*
(user-account
(name "jakub")
(comment "Jakub Dlugosz")
(group "users")
(home-directory "/home/jakub")
(supplementary-groups '("wheel" ;; sudo
"netdev" ;; network devices
"kvm"
"libvirt"
"tty"
"input"
"docker"
"audio" ;; control audio devices
"video" ;; access to webcam
"dialout" ;; access to /dev/ttyUSBX devices
)))
%base-user-accounts))
(define-public %jd-base-packages
(append
(specifications->packages '("emacs"
"emacs-exwm"
"stow"
"bluez"
"bluez-alsa"
"exfat-utils"
"git"
"xf86-input-libinput"
"intel-vaapi-driver"
"libva-utils" ;; vainfo
"nss-certs"))
%base-packages))
(define-public %jd-base-services
(cons*
(service openssh-service-type)
(service network-manager-service-type
(network-manager-configuration
(vpn-plugins (list
network-manager-pptp))))
(simple-service 'blueman dbus-root-service-type (list blueman))
(service bluetooth-service-type
(bluetooth-configuration
(auto-enable? #t)))
(service docker-service-type)
(service libvirt-service-type
(libvirt-configuration
(unix-sock-group "libvirt")))
(service cups-service-type
(cups-configuration
(web-interface? #t)))
(service thermald-service-type)
(service tlp-service-type
(tlp-configuration
(cpu-boost-on-ac? #t)
(wifi-pwr-on-bat? #t)))
polkit-network-manager-service
(service lxqt-desktop-service-type) ;; Just in case, if Emacs doesn't want to work.
(modify-services %desktop-services
(delete network-manager-service-type))))
;; Odin is a base for my operating systems
(define-public odin-free
(operating-system
(locale "en_US.utf8")
(timezone "Europe/Warsaw")
(keyboard-layout (keyboard-layout "pl"))
(host-name "odin")
(users %jd-base-user-accounts)
(packages %jd-base-packages)
(services %jd-base-services)
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))
(file-systems (cons* (file-system
(mount-point "/tmp")
(device "none")
(type "tmpfs")
(check? #f))
%base-file-systems))))
(define-public odin-non-free
(operating-system
(inherit odin-free)
(kernel linux)
(initrd microcode-initrd)
(firmware (list linux-firmware))))
|