blob: 5ce2d5c29e2d12fe5e090b8bce9c6ff3c4fc7fc1 (
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
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This configuration defines the base-level ;;
;; services for both of my machines. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-module (ymir)
#:use-module (gnu)
#:use-module (dwm-custom)
#:use-module (gnu packages suckless)
#:use-module (gnu services)
#:use-module (gnu services admin)
#:use-module (gnu services audio)
#:use-module (gnu services avahi)
#:use-module (gnu services dbus)
#:use-module (gnu services desktop)
#:use-module (gnu services file-sharing)
#:use-module (gnu services networking)
#:use-module (gnu services sound)
#:use-module (gnu services ssh)
#:use-module (gnu services xorg)
)
;;;; user
(define-public username "bdunahu")
(define user (user-account
(name username)
(comment username)
(group "users")
(home-directory (string-append "/home/" username))
(supplementary-groups '("audio"
"netdev"
"transmission"
"video"
"wheel"))))
;;;; base os
(define-public ymir
(operating-system
(host-name "ymir")
(locale "en_US.utf8")
(timezone "America/Denver")
(keyboard-layout (keyboard-layout "us"))
(kernel-arguments
(list
"quiet"))
;; 'root' is implicit
(users (cons* user
%base-user-accounts))
;; grub (uefi)
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))
;; packages installed system-wide.
(packages `(,@(map specification->package
'(
"cryptsetup"
"curl"
"dmenu"
"emacs"
"git"
"gtk+"
"icecat"
"imagemagick"
"libnotify"
"mpd"
"mpd-mpc"
"pass-otp"
"password-store"
"pavucontrol"
"pinentry"
"pulseaudio"
"recutils"
"sxiv"
"vim"
))
,@%base-packages
,dwm-packages))
;; base system services.
(services
(cons*
(service openssh-service-type
(openssh-configuration
(x11-forwarding? #t)
(permit-root-login 'prohibit-password)
(password-authentication? #f)))
(service tor-service-type)
(service transmission-daemon-service-type)
(service mpd-service-type
(mpd-configuration
(user user)
(music-directory "~/Personal/mpd/music")
(playlist-directory "~/Personal/mpd/playlist")
(default-port 6600)))
(set-xorg-configuration
(xorg-configuration (keyboard-layout keyboard-layout)))
(service screen-locker-service-type
(screen-locker-configuration
(name "slock")
(program (file-append slock "/bin/slock"))))
;; so that non-root users in the wheel group can
;; perform administrative tasks (similar to "sudo").
polkit-wheel-service
;; The global fontconfig cache directory can sometimes contain
;; stale entries, possibly referencing fonts that have been GC'd,
;; so mount it read-only.
fontconfig-file-system-service
(service network-manager-service-type)
(service wpa-supplicant-service-type) ; needed by NetworkManager
;; (simple-service 'network-manager-applet
;; profile-service-type
;; (list network-manager-applet))
(service modem-manager-service-type)
(service usb-modeswitch-service-type)
;; The D-Bus clique.
(service avahi-service-type)
(service udisks-service-type)
(service upower-service-type)
(service accountsservice-service-type)
(service cups-pk-helper-service-type)
(service colord-service-type)
(service geoclue-service-type)
(service polkit-service-type)
(service elogind-service-type
(elogind-configuration
(handle-power-key 'hibernate)
(idle-action-seconds (* 5 60))
(idle-action 'suspend)))
(service dbus-root-service-type)
(service ntp-service-type)
(service x11-socket-directory-service-type)
(service pulseaudio-service-type)
(service alsa-service-type)
%base-services))
;; OVERRIDE ME
(file-systems (cons*
(file-system
(mount-point "/")
(device "none")
(type "tmpfs")
(check? #f))
%base-file-systems))))
|