-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfiguration.nix
411 lines (338 loc) · 8.42 KB
/
configuration.nix
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
{ config, pkgs, ... }:
let
my-config-dir = "/home/cjbassi/config";
home-manager-repo = builtins.fetchTarball "https://github.com/rycee/home-manager/archive/master.tar.gz";
nur-repo = builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz";
spacemacs-repo = builtins.fetchTarball "https://github.com/syl20bnr/spacemacs/archive/develop.tar.gz";
in
{
imports =
[
./hardware-configuration.nix
(import "${home-manager-repo}/nixos")
];
# Settings {{{1
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
time.timeZone = "America/Los_Angeles";
system.stateVersion = "20.09";
nixpkgs.config.allowUnfree = true;
# disables laptop beeping
boot.extraModprobeConfig = ''
blacklist pcspkr
'';
security.sudo.wheelNeedsPassword = false;
users.mutableUsers = false;
boot.cleanTmpDir = true;
hardware.cpu.intel.updateMicrocode = true;
nix.gc.automatic = true;
system.autoUpgrade.enable = true;
# https://github.com/nix-community/NUR
nixpkgs.config.packageOverrides = pkgs: {
nur = import nur-repo {
inherit pkgs;
};
};
# improved battery usage
services.tlp.enable = true;
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
# Programs {{{2
programs.xonsh.enable = true;
programs.sway = {
enable = true;
# prevents installing uneeded packages
extraPackages = [];
};
# Fonts {{{2
console.font = "Hack";
fonts.enableDefaultFonts = true;
# Networking {{{2
networking.wireless.enable = true;
networking.networkmanager.enable = true;
# Sound and bluetooth {{{2
sound.enable = true;
hardware.bluetooth.enable = true;
hardware.pulseaudio = {
enable = true;
# support for bluetooth headsets
package = pkgs.pulseaudioFull;
# automatically switch to newly connected devices
extraConfig = ''
load-module module-switch-on-connect
'';
};
services.blueman.enable = true;
# Services {{{1
systemd.services.lockscreen-on-suspend = {
wantedBy = [ "sleep.target" ];
before = [ "sleep.target" ];
script = ''
export XDG_RUNTIME_DIR=/run/user/$(id -u $USER)
export SWAYSOCK=/run/user/$(id -u $USER)/sway-ipc.$(id -u $USER).$(pgrep -x sway).sock
swaylock
'';
serviceConfig = {
Type = "forking";
User = "cjbassi";
};
};
# https://github.com/gustavo-iniguez-goya/opensnitch/blob/main/daemon/opensnitchd.service
# systemd.services.opensnitchd = {
# wantedBy = [ "multi-user.target" ];
# wants = [ "network.target" ];
# after = [ "network.target" ];
# serviceConfig.ExecStart = "${pkgs.nur.repos.onny.opensnitchd}/bin/opensnitchd";
# };
systemd.services.reload-settings-on-wake = {
wantedBy = [ "sleep.target" ];
after = [ "sleep.target" ];
script = ''
export XDG_RUNTIME_DIR=/run/user/$(id -u $USER)
export SWAYSOCK=/run/user/$(id -u $USER)/sway-ipc.$(id -u $USER).$(pgrep -x sway).sock
reload-settings
'';
serviceConfig.User = "cjbassi";
};
# Users {{{1
users.users.cjbassi = {
isNormalUser = true;
extraGroups = [
"wheel"
# can run docker commands without sudo
"docker"
];
shell = pkgs.xonsh;
};
# Packages {{{1
environment.systemPackages = with pkgs; [
alacritty
alsaUtils
apulse
aspell
aspellDicts.en
astyle
bat
blueman
breeze-gtk
calibre
cargo
cargo-audit
cargo-bloat
cargo-edit
cargo-geiger
cargo-license
cargo-outdated
cargo-udeps
ccache
clang
cmake
copyq
docker
docker-compose
dua
element-desktop
emacs
exa
fd
fuse
fzf
gdb
gimp
git
gnupg
google-chrome
gparted
grim
hack-font
htop
httpie
imgurbash2
inotify-tools
insync
iotop
jq
kdeconnect
krita
libreoffice
libsecret
light
loop
lsof
mako
moreutils
mypy
ncdu
neofetch
networkmanager
networkmanager_dmenu
networkmanagerapplet
nixfmt
nodejs
openssh
p7zip
pamixer
pandoc
parted
pasystray
pavucontrol
playerctl
portaudio
postgresql
pulseaudio
pydf
python
qbittorrent
redshift-wlr
ripgrep
rofi
rsync
rust-analyzer
sccache
skim
slurp
spotify
strace
sway
swaybg
swayidle
swaylock-effects
time
tk
tokei
udiskie
udisks
unzip
valgrind
variety
virtualbox
vlc
waybar
wget
whois
xclip
xonsh
xsel
xwayland
yarn
youtube-dl
zip
gitAndTools.delta
gitAndTools.diff-so-fancy
gitAndTools.git-extras
gitAndTools.hub
perlPackages.FileMimeInfo
python38Packages.grip
xorg.xeyes
nur.repos.crazazy.js.CRA
# nur.repos.onny.opensnitchd
nur.repos.onny.opensnitch-ui
];
# home-manager {{{1
home-manager.users.cjbassi = {
xsession.preferStatusNotifierItems = true;
xdg.configFile."emacs".source = spacemacs-repo;
# Files and folders {{{2
# xdg.configFile = {
# source = "${my-config-dir}/.config";
# recursive = true;
# };
# xdg.dataFile = {
# source = "${my-config-dir}/.local/share";
# recursive = true;
# };
# home.file = {
# source = "${my-config-dir}/dotfiles";
# recursive = true;
# };
# home.file."Trash".source = "/home/cjbassi/.local/share/Trash/files";
# home.file."Trash".source = "${config.users.users.cjbassi}/.local/share/Trash/files";
# Services {{{2
systemd.user.targets.sway-session = {
Unit = {
BindsTo = [ "graphical-session.target" ];
Wants = [ "graphical-session-pre.target" ];
After = [ "graphical-session-pre.target" ];
};
};
programs.mako.enable = true;
programs.waybar = {
enable = true;
systemd.enable = true;
};
services.blueman-applet.enable = true;
services.kdeconnect = {
enable = true;
indicator = true;
};
services.network-manager-applet.enable = true;
services.pasystray.enable = true;
services.redshift = {
enable = true;
package = pkgs.redshift-wlr;
provider = "geoclue2";
};
services.udiskie = {
enable = true;
tray = "always";
};
systemd.user.services.copyq = {
Unit.PartOf = [ "graphical-session.target" ];
Service.ExecStart = "${pkgs.copyq}/bin/copyq";
Install.WantedBy = [ "graphical-session.target" ];
};
systemd.user.services.element-desktop = {
Unit.PartOf = [ "graphical-session.target" ];
Service.ExecStart = "${pkgs.element-desktop}/bin/element-desktop";
Install.WantedBy = [ "graphical-session.target" ];
};
# systemd.user.services.evscript = {
# Unit.PartOf = [ "graphical-session.target" ];
# Service = {
# ExecStart = "${pkgs.fd}/bin/fd '^.*kbd$' /dev/input/by-path | xargs sudo ${pkgs.nur.repos.cjbassi.evscript}/bin/evscript -f ~/config/evscript.dyon -d";
# SerExecStop="sudo pkill evscript";
# };
# Install.WantedBy = [ "graphical-session.target" ];
# };
systemd.user.services.insync = {
Unit = {
After = [
"local-fs.target"
"network.target"
];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "oneshot";
RemainAfterExit = true;
ExecStart = "${pkgs.insync}/bin/insync start --synchronous-full";
ExecStop = "${pkgs.insync}/bin/insync quit";
};
Install.WantedBy = [ "graphical-session.target" ];
};
systemd.user.services.opensnitch-ui = {
Unit.PartOf = [ "graphical-session.target" ];
Service.ExecStart = "${pkgs.nur.repos.onny.opensnitch-ui}/bin/opensnitch-ui --config ~/.config/opensnitch/ui-config.json";
Install.WantedBy = [ "graphical-session.target" ];
};
systemd.user.services.swayidle = {
Unit.PartOf = [ "graphical-session.target" ];
Service.ExecStart = ''
{pkgs.swayidle}/bin/swayidle -w \
timeout 300 'swaylock' \
timeout 600 'swaymsg "output * dpms off"' \
resume 'swaymsg "output * dpms on"'
'';
Install.WantedBy = [ "graphical-session.target" ];
};
systemd.user.services.variety = {
Unit.PartOf = [ "graphical-session.target" ];
Service.ExecStart = "${pkgs.variety}/bin/variety";
Install.WantedBy = [ "graphical-session.target" ];
};
};
}