-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.nix
619 lines (563 loc) · 15.1 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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, lib, inputs, ... }:
{
imports = [
inputs.home-manager.nixosModules.home-manager
inputs.musnix.nixosModules.default
inputs.impermanence.nixosModules.impermanence
inputs.agenix.nixosModules.age
# "${inputs.nixpkgs}/nixos/modules/services/desktops/pipewire/filter.nix"
inputs.nixos-cosmic.nixosModules.default
./secrets/nix-expressions/nixos.nix
];
nixpkgs.config = import ./nixpkgs-config.nix;
nixpkgs.overlays = [
inputs.rust-overlay.overlays.default
# "overwrite" xdg-open with handlr
(final: prev: {
# very expensive since this invalidates the cache for a lot of (almost all) graphical apps.
xdg-utils = prev.xdg-utils.overrideAttrs (oldAttrs: {
postInstall = ''
# "overwrite" xdg-open with handlr
cp ${prev.writeShellScriptBin "xdg-open" "${prev.handlr}/bin/handlr open \"$@\""}/bin/xdg-open $out/bin/xdg-open
'';
});
})
# use same wine version as the system...
(final: prev: {
yabridgectl = prev.yabridgectl.override { wine = prev.wineWowPackages.stableFull; };
yabridge = prev.yabridge.override { wine = prev.wineWowPackages.stableFull; };
})
(final: prev: {
my-rust-toolchain = (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
extensions = [ "rustfmt" "rust-analyzer" "rust-src" "miri" ];
targets = [ "x86_64-unknown-linux-gnu" "wasm32-unknown-unknown" "x86_64-pc-windows-gnu" "aarch64-linux-android" ];
}));
})
(final: prev: { qemu = prev.qemu.override { smbdSupport = true; }; })
];
nixpkgs.hostPlatform = "x86_64-linux";
nix = {
package = pkgs.nixVersions.latest;
registry.nixpkgs.flake = inputs.nixpkgs;
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
settings = {
auto-optimise-store = true;
keep-failed = true;
trusted-users = [ "root" "@wheel" ];
substituters = [ "https://nix-cache.mildenberger.me" "https://cache.nixos.org/" "https://cosmic.cachix.org/" ];
trusted-public-keys = [
"nix-cache.mildenberger.me:dcNVw3YMUReIGC5JsMN4Ifv9xjbQn7rkDF7gJIO0ZoI="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE="
];
experimental-features = [ "nix-command" "flakes" "ca-derivations" ];
};
};
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.memtest86.enable = true;
boot.extraModulePackages = [ config.boot.kernelPackages.v4l2loopback.out ];
boot.kernelModules = [ "v4l2loopback" ];
system.stateVersion = "22.11";
# Select internationalisation properties.
i18n.defaultLocale = "en_IE.UTF-8";
console.keyMap = "colemak";
console.font = "Lat2-Terminus16";
# Set your time zone.
time.timeZone = "Europe/Vienna";
hardware.graphics = {
enable = true;
# Enable 32-bit dri support for steam
enable32Bit = true;
extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
};
# Enable audio
# Not strictly required but pipewire will use rtkit if it is present
security.rtkit.enable = true;
services.pipewire = {
enable = true;
# Compatibility shims, adjust according to your needs
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
# services.pipewire.deepfilter.enable = true;
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
# debugging of local webservices from external devices like smartphones
networking.firewall.allowedTCPPorts = [ 80 443 8080 8081 8000 8001 3000 6600 7201 ];
networking.firewall.allowedUDPPorts = [ 80 443 8080 8081 8000 8001 3000 6600 7201 ];
networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }];
networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }];
networking.hosts = { "127.0.0.1" = [ "work" "www" "spa-test" ]; };
# nginx is sandboxed and doesn't allow reading from /home
systemd.services.nginx.serviceConfig = {
ProtectSystem = lib.mkForce false;
ProtectHome = lib.mkForce false;
};
services.nginx = {
user = "philm"; # because all content is served locally in home for testing
enable = true;
recommendedGzipSettings = true;
virtualHosts = {
"work" = {
root = "/home/philm/dev/work/";
locations."/".extraConfig = "autoindex on;";
};
"www" = {
default = true;
root = "/home/philm/dev/personal/www/";
locations."/".extraConfig = "autoindex on;";
};
"spa-test" = {
# simple test for SPAs, that need to use / with normal history routing
root = "/home/philm/dev/personal/www/spa-test";
locations."/".extraConfig = ''
try_files $uri $uri/ /index.html;
autoindex on;
'';
};
};
};
# List of systemwide services
virtualisation = {
docker = {
enable = true;
daemon.settings.features.buildkit = true;
};
virtualbox.host = {
enable = true;
enableHardening = false;
enableExtensionPack = true;
};
};
systemd.extraConfig = ''
DefaultJobTimeoutSec=15s
DefaultTimeoutStartSec=15s
DefaultTimeoutStopSec=15s
'';
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
settings.PermitRootLogin = "yes";
};
services.udisks2.enable = true;
# Enable the X11 windowing system.
services.autorandr.enable = true;
hardware.pulseaudio.enable = false;
services.vnstat.enable = true;
environment.sessionVariables = {
EDITOR = "${config.home-manager.users.philm.programs.helix.package}/bin/hx";
COSMIC_DATA_CONTROL_ENABLED = "1";
};
environment.interactiveShellInit = ''
alias google-chrome='google-chrome-stable'
'';
services.displayManager = {
# defaultSession = "none+xmonad";
defaultSession = "cosmic";
};
services.libinput.enable = true;
services.desktopManager.cosmic.enable = true;
services.xserver = {
enable = true;
autoRepeatInterval = 15;
autoRepeatDelay = 300;
xkb.variant = "colemak";
# Enable touchpad support.
displayManager.gdm.enable = true;
displayManager.gdm.debug = true;
displayManager.gdm.wayland = true;
displayManager.gdm.autoSuspend = false; # for ssh connections mostly
displayManager = {
session = [{
name = "xmonad";
manage = "window";
bgSupport = true;
start = ''
${pkgs.runtimeShell} $HOME/.xsession &
waitPID=$!
'';
}];
};
};
services.kanata = {
enable = true;
keyboards.default = {
# devices are configured in each /machines/<machine>/default.nix
# TODO extend kanata to automatically recognize input devices, autorestart/map devices if they connect/disconnect etc.
config = ''
(defsrc
mlft mrgt mmid mfwd
esc 1 2 3 4 5 6 7 8 9 0 - = bspc
tab q w f p g j l u y ; [ ] \
caps a r s t d h n e i o ' ret
lsft z x c v b k m , . / rsft
lctl lmet lalt spc ralt rmet cmp rctl
)
(deflayer colemak
mlft mrgt mmid @metaextra
esc 1 2 3 4 5 6 7 8 9 0 - = bspc
@xcp q w f p g j l u y ; [ ] \
esc a r s t d h n e i o ' ret
lsft z x c v b k m , . / rsft
lctl lmet lalt spc ralt rmet cmp rctl
)
(defalias xcp (tap-hold-press 300 300 tab lmet))
(defalias metaextra (tap-hold-press 300 300 mfwd lmet))
'';
};
};
systemd.user.services."sync-nix-cache" = {
path = [ config.programs.ssh.package ];
enable = true;
script = "${config.nix.package}/bin/nix copy -s --to ssh://nix-cache.mildenberger.me /run/current-system";
startAt = "hourly";
};
# gtk themes (home-manager more specifically) seem to have problems without it
services.dbus.packages = [ pkgs.dconf ];
programs.dconf.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true; # necessary? as hyprland has its own xdg-portal based on wlr
xdgOpenUsePortal = true;
# TODO configure this correctly
config.common.default = "*";
extraPortals = [
pkgs.xdg-desktop-portal-gtk
pkgs.xdg-desktop-portal-kde
pkgs.xdg-desktop-portal-hyprland
];
};
services.flatpak.enable = true;
services.teamviewer.enable = true;
programs.command-not-found.enable = false;
# allow no password for sudo (dangerous...)
security.polkit.enable = true;
security.sudo.enable = true;
security.sudo.wheelNeedsPassword = false;
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.philm = {
uid = 1000;
isNormalUser = true;
shell = pkgs.fish;
extraGroups = [
"input"
"uinput"
"audio"
"dialout"
"networkmanager"
"systemd-journal"
"adbusers"
"realtime"
"video"
"power"
"wheel" # Enable ‘sudo’ for the user.
"docker"
];
};
users.extraGroups.vboxusers.members = [ "philm" ];
# configure home-manager
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
home-manager.users.philm = {
imports = builtins.attrValues inputs.self.homeManagerModules ++ [
inputs.nix-index-database.hmModules.nix-index
(import ./secrets/nix-expressions/firefox.nix inputs)
];
programs.home-manager.enable = true;
nixpkgs.config = import ./nixpkgs-config.nix;
xdg.configFile."nixpkgs/config.nix".source = ./nixpkgs-config.nix;
home.stateVersion = "22.05";
home.enableNixpkgsReleaseCheck = false;
modules.cli.enable = true;
modules.gui.enable = true;
modules.create-directories.enable = true;
};
# All system wide packages
programs.fish.enable = true;
programs.hyprland.enable = true;
programs.xwayland.enable = true;
programs.adb.enable = true;
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-tty;
};
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
services.gnome.gnome-keyring.enable = true;
security.pam.services.gdm.enableGnomeKeyring = true;
programs.ssh.startAgent = true;
programs.seahorse.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# DEVELOPMENT
## compilers and dev environment
# clang_10 # conflicts with gcc
python3Full
python3Packages.pip
python3Packages.setuptools
poetry
wasm-bindgen-cli
graphql-client
openapi-generator-cli
ruby
earthly
grpc-client-cli
minio-client
mongodb-compass
elixir
gcc10
gdb
meson
cmake
dart
valgrind
git
gti
git-secret
git-crypt
gitAndTools.diff-so-fancy
pijul
gnumake
jdk
ghc
llvmPackages.bintools
neovim
kakoune
android-studio
droidcam
flatpak-builder
# haskell.compiler.ghc882
nixpkgs-review
php
yarn
deno
# nodejs_latest
nodejs_18
nodePackages.node2nix
pkg-config
# Rust
# (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
# extensions = [ "rustfmt" "rust-analyzer" "rust-src" "miri" ];
# targets = [ "x86_64-unknown-linux-gnu" "wasm32-unknown-unknown" "x86_64-pc-windows-gnu" ];
# }))
my-rust-toolchain
cargo-expand
cargo-update
cargo-insta
cargo-make
cargo-flamegraph
cargo-watch
cargo-leptos
cargo-llvm-lines
# WASM related
binaryen
trunk
twiggy
wasm-pack
miniserve
sqlitebrowser
zig
vscode
glslang
vulkan-tools
vulkan-headers
vulkan-loader
vulkan-validation-layers
steam-run
rcm # manage dotfiles
# OFFICE/DOCUMENTING
pandoc
calibre
exiv2
libreoffice
texlive.combined.scheme-full
# wkhtmltopdf
xournal
zathura
# TERMINAL/CLI
fasd
fzf
file
asciinema
progress
htop
killall
lm_sensors
lsd
lshw
pciutils
ripgrep
ripgrep-all
fd
tokei
gitAndTools.gh
du-dust
bat
zoxide
bandwhich
grex
hyperfine
tealdeer
procs
wget
unzip
b3sum
yq
yt-dlp
zip
unrar
p7zip
brotli
# GRAPHICS
# blender # flatpak version is used due to Optix support
krita
gimp
inkscape
exiftool
# qgis
# AUDIO
giada
cantata
# loopers
yabridge
yabridgectl
pavucontrol
helvum
ffmpeg_7-full
flacon
bitwig-studio
renoise
qpwgraph
a2jmidid
playerctl
reaper
musescore
# COMMUNICATION
thunderbird
signal-desktop
element-desktop
# qtox
discord
slack
v4l-utils
zoom-us
skypeforlinux
fractal
tdesktop
# WEB
chromium
google-chrome
firefox
firefox-beta-bin
(brave.override { vulkanSupport = true; })
tor-browser-bundle-bin
ff2mpv
# XORG/DESKTOP ENVIRONMENT
awf
dolphin
dzen2
file-roller
dmenu
wmctrl
xorg.xev
xorg.xinit
xorg.xmessage
xorg.xkill
xorg.xwininfo
handlr
deadd-notification-center
# GAMES
# minecraft
wineWowPackages.stableFull
winetricks
protontricks
# MISC
scrcpy
quickemu
spice-gtk
xorg.xhost
nix-du
nix-tree
nix-query-tree-viewer
inputs.comma.packages.${pkgs.system}.default
# inputs.devenv.packages.${pkgs.system}.devenv
# colmapWithCuda
# colmap
exfat
rdup
sanoid
rmlint
LAStools
gparted
gsettings-desktop-schemas
appimage-run
ntfs3g
woeusb
ipfs
acpi
freecad
appimage-run
openvpn
# openvpn3
powertop
usbutils
cabextract
patchelf
qdirstat
borgbackup
electrum
monero-gui
keepassxc
memtester
docker-compose
# arion
filezilla
scrot
feh # to view images in terminal wrapped in home.packages with a script for svg support
gwenview
smartmontools
rdfind
rage
imagemagick
guetzli
unityhub
unixtools.xxd
blender
fira-code
openssl
rclone
mpv
source-code-pro
transmission_4-gtk
qbittorrent
xclip
adb-sync
udiskie
tree-sitter
];
# TODO put these in home-manager?
fonts = {
fontconfig.enable = true;
fontDir.enable = true;
enableGhostscriptFonts = true;
packages = with pkgs; [
font-awesome
emojione
nerdfonts
google-fonts
material-symbols
];
};
}