summaryrefslogtreecommitdiff
path: root/home.nix
blob: 100319fb0f89e325565d8b6bbb28d6ccc526c6a1 (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
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
{ config, lib, pkgs, inputs, hostname, ... }:

let
  colors = import ./colors.nix;

  isync-oauth2 = with pkgs; buildEnv {
    # takens from:
    # https://github.com/wentasah/nix-conf/raw/master/modules/mail.nix
    # https://github.com/NixOS/nixpkgs/issues/108480#issuecomment-1115108802
    name = "isync";
    paths = [ pkgs.isync ];
    pathsToLink = ["/bin"];
    nativeBuildInputs = [ makeWrapper ];
    postBuild = ''
        wrapProgram "$out/bin/mbsync" \
          --prefix SASL_PATH : "${cyrus_sasl}/lib/sasl2:${cyrus-sasl-xoauth2}/lib/sasl2"
      '';
  };

  uvtools = with pkgs; appimageTools.wrapType2 rec {
    pname = "UVtools";
    version = "5.0.6";
    src = fetchurl {
      url  = "https://github.com/sn4k3/${pname}/releases/download/v${version}/${pname}_linux-x64_v${version}.AppImage";
      hash = "sha256-T1E2+7YocWbspRrpWoexfLmm7LZSb4Nkw8WSBD6zTHs";
    };
    extraPkgs = pkgs: [ pkgs.icu ];
  };
in {
	home = {
		username = "vin";
		homeDirectory = "/home/vin";
		stateVersion = "24.05";

		packages = with pkgs; [
      # normal utils
			neofetch
			rclone
      wcalc

      # programming
      python3

      # CAD software
			kicad
      openscad

      # document writing and viewing
      mupdf # needed for emacs docview
      texlive.combined.scheme-full
      zathura

      # messaging
			profanity
      vesktop

      # email
      notmuch
      oauth2ms

      # hardware
      acpi
      acpilight
      amdgpu_top

      # encryption
			age
      age-plugin-yubikey
      oathToolkit
      yubikey-agent
      yubikey-manager

      # system utils
			dmenu
      file
      htop
			mlocate
			ncdu
			tree
      unzip
      p7zip

      # X and desktop-related
      scrot
      sxiv
      xclip
			xdotool
			xwallpaper

      # wayland and desktop-related
      grim
      slurp
      wl-clipboard
      wmenu

      # 3d printing
      prusa-slicer
      uvtools
		];

		preferXdgDirectories = true;

		sessionPath = [
			"$HOME/bin"
			"$HOME/.local/bin"
		];

		sessionVariables = {
			EDITOR = "emacs";
      VISUAL = "emacs -nw";
			PAGER = "less";
			LESS = "-iR";
			LESSHISTFILE = "/dev/null";
			BROWSER = "qutebrowser";

			GOPROXY = "direct";

			AGE_KEY = "$HOME/.ssh/id_ed25519";
			AGE_PUB = "$AGE_KEY.pub";
			KASI_DIR =
        if hostname == "demiurge" then
          "/data/kasi"
        else
          "/home/vin/.kasi";
			KASI_ENCRYPT = "age -R $AGE_PUB";
			KASI_DECRYPT = "age -d -i $AGE_KEY";
			KASI_EXT = "age";
			KASI_CLIPBOARD = "wl-copy -o";

      # w3m is only used for aerc html preview
      W3M_DIR = "/var/empty";

      # backblaze on rclone
      RCLONE_FAST_LIST = 1;

      CRAWL_DIR = "$HOME/.local/share/crawl";

			MOZ_ACCELERATED = 1;
			MOZ_WEBRENDER = 1;

      LM_LICENSE_FILE =
        if hostname == "demiurge" then
          "/data/docs/university/2025/spring/eel3792c/LR-214703_License.dat"
        else
          "/home/vin/docs/university/2025/spring/eel3792c/LR-213834_License.dat";

      # broken qt6.9 rendering
      QTWEBENGINE_FORCE_USE_GBM = 0;
		};

		shellAliases = {
      # shortened commands
      md = "mkdir -p";
			e = "$EDITOR";
      p = "$PAGER";
      m = "aerc";
			gc = "git clone";
      cbc = "wl-copy -c; wl-copy -cp";

      # default arguments to commands
			ls = "ls -F --color=auto";
      rsync = "rsync --no-inc-recursive";
			mpv = "mpv --save-position-on-quit";
      wget = "wget --no-hsts";
      ytdl = "noglob yt-dlp";

      # shortened nix commands
      # the `-c $SHELL` is there because it defaults to bash even if
      # that's not my user shell
      nd = "nix develop -c $SHELL";
      nr = "nix run";
      ns = "nix search";
      nsh = "nix shell";
		};
	};

	fonts.fontconfig = {
		enable = true;
		defaultFonts = {
			emoji     = [];
			monospace = [ "Comic Code" ];
			sansSerif = [ "Cantarell" ];
			serif     = [ "CMU Serif" ];
		};
	};

	gtk = {
		enable = true;
		font.name = "monospace 11";
		iconTheme.name = "rose-pine";
		iconTheme.package = pkgs.rose-pine-icon-theme;
		theme.name = "Everblush";
		theme.package = inputs.everblush-gtk.packages.x86_64-linux.default;
	};

  dconf.settings = {
    "org/virt-manager/virt-manager/connections" = {
      autoconnect = [ "qemu:///system" ];
      uris = [ "qemu:///system" ];
    };
  };

  accounts.email = {
    maildirBasePath = "mail";

    accounts = {
      university = {
        address = "***REDACTED_EMAIL***";
        realName = "Vineet Kumar";
        userName = "***REDACTED_EMAIL***";
        passwordCommand = "oauth2ms";

        imap.host = "outlook.office365.com";
        smtp = {
          host = "smtp-mail.outlook.com";
          port = 587;
          tls.useStartTls = true;
        };

        mbsync = {
          enable = true;
          create = "both";
          expunge = "both";
          remove = "both";
          patterns = [
            "*" "!Calendar*" "!Contacts*" "!Conversation*"
            "!Notes*" "!Journal*" "!Tasks*"
          ];
        };

        msmtp = {
          enable = true;
          extraConfig.auth = "xoauth2";
        };

        notmuch.enable = true;
      };

      vineetk = {
        address = "me@vineetk.net";
        realName = "Vineet Kumar";
        userName = "vineet@vineetk.net";
        passwordCommand = "kasi pass email/vineetk";
        primary = true;

        imap.host = "mail.vineetk.net";
        smtp.host = "mail.vineetk.net";

        mbsync = {
          enable = true;
          create = "both";
          expunge = "both";
          remove = "both";
          patterns = [ "*" ];
        };

        msmtp.enable = true;
        notmuch.enable = true;
      };

      thirteen = {
        address = "kar@13f0.net";
        realName = "Kar";
        userName = "kar@13f0.net";
        passwordCommand = "kasi pass email/13f0";

        imap.host = "mail.vineetk.net";
        smtp.host = "mail.vineetk.net";

        mbsync = {
          enable = true;
          create = "both";
          expunge = "both";
          remove = "both";
          patterns = [ "*" ];
        };

        msmtp.enable = true;
        notmuch.enable = true;
      };
    };
  };

	programs = {
    home-manager.enable = true;

    aerc.enable = true;

    foot = {
      enable = true;

      settings = {
        main = {
          # makes it easier when ssh'ing
          term = "xterm-256color";

          font = "monospace:size=14";
          dpi-aware = "yes";

          pad = "10x10";
        };

        colors = let
          rmhash = s: builtins.substring 1 (-1) s;
        in
          {
            alpha = 0.9;

            background = rmhash colors.current.primary.background;
            foreground = rmhash colors.current.primary.foreground;

            regular0 = rmhash colors.current.normal.black;
            regular1 = rmhash colors.current.normal.red;
            regular2 = rmhash colors.current.normal.green;
            regular3 = rmhash colors.current.normal.yellow;
            regular4 = rmhash colors.current.normal.blue;
            regular5 = rmhash colors.current.normal.magenta;
            regular6 = rmhash colors.current.normal.cyan;
            regular7 = rmhash colors.current.normal.white;

            bright0 = rmhash colors.current.bright.black;
            bright1 = rmhash colors.current.bright.red;
            bright2 = rmhash colors.current.bright.green;
            bright3 = rmhash colors.current.bright.yellow;
            bright4 = rmhash colors.current.bright.blue;
            bright5 = rmhash colors.current.bright.magenta;
            bright6 = rmhash colors.current.bright.cyan;
            bright7 = rmhash colors.current.bright.white;
          };
      };
    };

		git = {
			enable = true;
			difftastic = {
				enable = true;
				background = "dark";
				color      = "always";
				display	   = "side-by-side-show-both";
			};
			extraConfig = {
				user = {
					email      = "git@vineetk.net";
					name       = "vin";
					signingkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEvM0xCLziR+ZT/SYE1aZM6dklbw4fEC17TWqbADIZRH kou@demiurge";
				};
				sendemail = {
					suppresscc = "self";
					annotate   = true;
				};
				format.signOff = true;
				pull.rebase = true;
				init.defaultBranch = "master";
				http = {
					version    = "HTTP/1.1";
					postBuffer = 524288000;
				};
				commit.gpgsign = false;
				gpg.format = "ssh";
				"gpg \"ssh\"".allowedSignersFile = "/home/vin/.ssh/allowed_signers";
			};
			ignores = [
				"*~"
				".*~"
				"*.swp"
			];
		};

    mbsync = {
      enable = true;
      package = isync-oauth2;
    };

    msmtp.enable = true;

    mpv = {
      enable = true;

      bindings = {
        # I wish there was a more elegant way of setting Anime4K

        "Ctrl+1" = "no-osd change-list glsl-shaders set '~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Restore_CNN_VL.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_VL.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl'; show-text 'Anime4K: Mode A (HQ)'";
        "Ctrl+2" = "no-osd change-list glsl-shaders set '~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Restore_CNN_Soft_VL.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_VL.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl'; show-text 'Anime4K: Mode B (HQ)'";
        "Ctrl+3" = "no-osd change-list glsl-shaders set '~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Upscale_Denoise_CNN_x2_VL.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl'; show-text 'Anime4K: Mode C (HQ)'";
        "Ctrl+4" = "no-osd change-list glsl-shaders set '~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Restore_CNN_VL.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_VL.glsl:~~/shaders/Anime4K_Restore_CNN_M.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl'; show-text 'Anime4K: Mode A+A (HQ)'";
        "Ctrl+5" = "no-osd change-list glsl-shaders set '~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Restore_CNN_Soft_VL.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_VL.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Restore_CNN_Soft_M.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl'; show-text 'Anime4K: Mode B+B (HQ)'";
        "Ctrl+6" = "no-osd change-list glsl-shaders set '~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Upscale_Denoise_CNN_x2_VL.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Restore_CNN_M.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl'; show-text 'Anime4K: Mode C+A (HQ)'";

        "Ctrl+0" = "no-osd change-list glsl-shaders clr ''; show-text 'GLSL shaders cleared'";
      };

      config = {
        # sets default shaders to Anime4K Mode A (HQ). laptop's igpu doesn't like it though
        glsl-shaders = "~~/shaders/Anime4K_Clamp_Highlights.glsl:~~/shaders/Anime4K_Restore_CNN_VL.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_VL.glsl:~~/shaders/Anime4K_AutoDownscalePre_x2.glsl:~~/shaders/Anime4K_AutoDownscalePre_x4.glsl:~~/shaders/Anime4K_Upscale_CNN_x2_M.glsl";

        ytdl-format = "bestvideo[height<=?1440]+bestaudio/best";
      };
    };

    notmuch = {
      enable = true;
      extraConfig.user = {
        name = "Vineet Kumar";
        primary_email = "me@vineetk.net";
        other_email = "vineet@vineetk.net;***REDACTED_EMAIL***;kar@13f0.net";
      };
      hooks = {
        postNew = ''
            notmuch tag +13f0 -- tag:new and to:"*@13f0.net"
            notmuch tag +vineetk -- tag:new and to:"*@vineetk.net"
            notmuch tag +university -- tag:new and to:***REDACTED_EMAIL***
            notmuch tag +openbsd_announce -inbox -- tag:new and to:announce@openbsd.org
            notmuch tag +openbsd_arm -inbox -- tag:new and to:arm@openbsd.org
            notmuch tag +openbsd_misc -inbox -- tag:new and to:misc@openbsd.org
            notmuch tag +opensmtpd_misc -inbox -- tag:new and to:misc@opensmtpd.org
            notmuch tag +oss_security -inbox -- tag:new and to:oss-security@lists.openwall.com
            notmuch tag +tuhs -inbox -- tag:new and to:tuhs@tuhs.org
            '';
        preNew = "mbsync -a";
      };
    };

    qutebrowser = {
      enable = true;

      quickmarks = {
        canvas = "https://floridapolytechnic.instructure.com";
        cams = "https://cams.floridapoly.org/student/login.asp";
        weather = "https://forecast.weather.gov/MapClick.php***REMOVED***";
        entertrained = "https://entertrained.app/";
        burst = "https://www.burst-type.pro/";
        colemakcamp = "https://colemakcamp.github.io/";
      };

      searchEngines = {
        DEFAULT = "https://searx.demiurge.epistemia/search?q={}";
        ddg = "https://lite.duckduckgo.com/?q={}";
        nw = "https://wiki.nixos.org/index.php?search={}";
        aw = "https://wiki.archlinux.org/?search={}";
        gw = "https://wiki.gentoo.org/?search={}";
      };

      settings = {
        content.javascript.enabled = false;

        url = {
          default_page = "about:blank";
          start_pages = [
            "about:blank"
          ];
        };

        colors.webpage = {
          preferred_color_scheme = "dark";
          darkmode = {
            enabled = true;
            policy.images = "never";
          };
        };

        zoom.default = "133%";
      };

      extraConfig = ''
# javascript
config.set('content.javascript.enabled', True, 'chrome-devtools://*')
config.set('content.javascript.enabled', True, 'devtools://*')
config.set('content.javascript.enabled', True, 'chrome://*/*')
config.set('content.javascript.enabled', True, 'qute://*/*')

config.set('content.javascript.enabled', True, 'floridapolytechnic.instructure.com')
config.set('content.javascript.enabled', True, '*.floridapoly.edu')
config.set('content.javascript.enabled', True, 'login.microsoftonline.com')
config.set('content.javascript.enabled', True, 'www.microsoft365.com')
config.set('content.javascript.enabled', True, 'flpoly-my.sharepoint.com')
config.set('content.javascript.enabled', True, 'flpoly.sharepoint.com')
config.set('content.javascript.enabled', True, 'teams.microsoft.com')
config.set('content.javascript.enabled', True, 'ieeexplore.ieee.org')

config.set('content.javascript.enabled', True, 'gitlab.com')
config.set('content.javascript.enabled', True, 'cloud.binary.ninja')
config.set('content.javascript.enabled', True, 'console.hetzner.cloud')
config.set('content.javascript.enabled', True, '*.hetzner.com')
config.set('content.javascript.enabled', True, '*.digikey.com')
config.set('content.javascript.enabled', True, '*.demiurge.epistemia')

# Allow locally loaded documents to access remote URLs.
config.set('content.local_content_can_access_remote_urls', True, 'file:///home/vin/.local/share/qutebrowser/userscripts/*')
config.set('content.local_content_can_access_file_urls', False, 'file:///home/vin/.local/share/qutebrowser/userscripts/*')

# disable dark mode for some sites
config.set('colors.webpage.darkmode.enabled', False, 'flpoly-my.sharepoint.com')
config.set('colors.webpage.darkmode.enabled', False, 'flpoly.sharepoint.com')
config.set('colors.webpage.darkmode.enabled', False, 'teams.microsoft.com')

config.set('colors.webpage.darkmode.enabled', False, 'cloud.binary.ninja')
config.set('colors.webpage.darkmode.enabled', False, 'git.vineetk.net')
      
# prevent accidental exiting
config.unbind("<Ctrl+q>", mode="normal")

# source theme from nixos
config.source("theme.py")

# source redirectors
config.source("redirectors.py")
'';
    };

    tmux = {
      enable = true;

      keyMode = "emacs";
      mouse = false;
      prefix = "C-s";
      terminal = "screen-256color";

      extraConfig = ''
# status bar
set-option -g status-style bg=terminal
set-option -g status-style fg=terminal

set-option -g window-status-format "#[bg=terminal fg=terminal noreverse]#{window_index}:#{window_name}"
set-option -g window-status-current-format "#[bg=black fg=terminal]#{window_index}:#{window_name}#{window_flags}"

set-option -g status-right "%R %b %d %Y"

# colorscheme stuff
set-option -sa terminal-features ',*:RGB'
'';
    };

		yt-dlp = {
			enable = true;
			settings = {
				merge-output-format = "mkv";
				embed-subs = true;
				embed-metadata = true;
				embed-thumbnail = true;
				sub-langs = "en,-livechat";
				format = "bestvideo[height<=?1440]+bestaudio/best";
				downloader = "aria2c";
				downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
			};
		};

		zsh = {
			enable = true;
			enableCompletion = true;
			defaultKeymap = "emacs";
			history = {
				ignoreDups = true;
				ignoreSpace = true;
			};
			initContent = ''
			# auto-correct commands
			setopt correctall

			# fix meta/ctrl-backspace
			autoload -Uz select-word-style
			select-word-style bash
			'';
			syntaxHighlighting = {
				enable = true;
				highlighters = [
					"main"
					"brackets"
					"pattern"
				];
				patterns = {
					"rm -rf *" = "fg=white,bold,bg=red";
				};
			};
		};
	};

	services = {
		# batsignal
		# borgmatic	
	  # dunst?
		# glance?
		# gpg-agent with ssh?
		# mpd and ncmpcpp?
		# nextcloud-client?
		# pass-secret-service?
		# plan9port for plumbing?
		# recoll?
		# remmina?
		# screen-locker
		# sxhkd if using bspwm and not i3
		# unison
		# vdirsyncer

    # parametric equalizer (and other stuff I don't use) in pipewire
    easyeffects = {
      enable = true;
      preset = "he5xx_oratory1990";
      extraPresets.he5xx_oratory1990 = {
        output = {
          blocklist = [ ];
          "equalizer#0" = {
            balance = 0;
            bypass = false;
            input-gain = -7;
            left = {
              band0 = {
                frequency = 25;
                gain = 5.3;
                mode = "APO (DR)";
                mute = false;
                q = 1;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band1 = {
                frequency = 105;
                gain = 5.5;
                mode = "APO (DR)";
                mute = false;
                q = 0.666667;
                slope = "x1";
                solo = false;
                type = "Lo-shelf";
                width = 4;
              };
              band2 = {
                frequency = 470;
                gain = -1;
                mode = "APO (DR)";
                mute = false;
                q = 4;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band3 = {
                frequency = 530;
                gain = 1.8;
                mode = "APO (DR)";
                mute = false;
                q = 1.2;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band4 = {
                frequency = 800;
                gain = 5;
                mode = "APO (DR)";
                mute = false;
                q = 0.666667;
                slope = "x1";
                solo = false;
                type = "Hi-shelf";
                width = 4;
              };
              band5 = {
                frequency = 910;
                gain = -3.4;
                mode = "APO (DR)";
                mute = false;
                q = 3;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band6 = {
                frequency = 1300;
                gain = -3.3;
                mode = "APO (DR)";
                mute = false;
                q = 3;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band7 = {
                frequency = 5400;
                gain = -4.8;
                mode = "APO (DR)";
                mute = false;
                q = 4.5;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band8 = {
                frequency = 11000;
                gain = -7;
                mode = "APO (DR)";
                mute = false;
                q = 0.666667;
                slope = "x1";
                solo = false;
                type = "Hi-shelf";
                width = 4;
              };
            };
            mode = "IIR";
            num-bands = 9;
            output-gain = 0;
            pitch-left = 0;
            pitch-right = 0;
            right = {
              band0 = {
                frequency = 25;
                gain = 5.3;
                mode = "APO (DR)";
                mute = false;
                q = 1;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band1 = {
                frequency = 105;
                gain = 5.5;
                mode = "APO (DR)";
                mute = false;
                q = 0.666667;
                slope = "x1";
                solo = false;
                type = "Lo-shelf";
                width = 4;
              };
              band2 = {
                frequency = 470;
                gain = -1;
                mode = "APO (DR)";
                mute = false;
                q = 4;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band3 = {
                frequency = 530;
                gain = 1.8;
                mode = "APO (DR)";
                mute = false;
                q = 1.2;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band4 = {
                frequency = 800;
                gain = 5;
                mode = "APO (DR)";
                mute = false;
                q = 0.666667;
                slope = "x1";
                solo = false;
                type = "Hi-shelf";
                width = 4;
              };
              band5 = {
                frequency = 910;
                gain = -3.4;
                mode = "APO (DR)";
                mute = false;
                q = 3;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band6 = {
                frequency = 1300;
                gain = -3.3;
                mode = "APO (DR)";
                mute = false;
                q = 3;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band7 = {
                frequency = 5400;
                gain = -4.8;
                mode = "APO (DR)";
                mute = false;
                q = 4.5;
                slope = "x1";
                solo = false;
                type = "Bell";
                width = 4;
              };
              band8 = {
                frequency = 11000;
                gain = -7;
                mode = "APO (DR)";
                mute = false;
                q = 0.666667;
                slope = "x1";
                solo = false;
                type = "Hi-shelf";
                width = 4;
              };
            };
            split-channels = false;
          };
          plugins_order = [ "equalizer#0" ];
        };
      };
    };

		poweralertd.enable = true;

		redshift = {
			enable            = false;
			dawnTime          = "07:00";
			duskTime          = "00:00";
			temperature.day   = 6500;
			temperature.night = 4500;
		};

    syncthing = {
      enable = true;
      settings = {
        devices = {
          demiurge = {
            addresses = [
              "tcp://192.168.1.2:22000"
              "tcp://100.64.0.2:22000"
            ];
            id = "Y2XNSCK-DQYYKWZ-DCKSCH2-QWRHQJV-5RLNTZF-RX2QOKL-RZ7J67Z-HGMK2Q2";
          };

          hastur = {
            addresses = [
              "tcp://192.168.1.3:22000"
              "tcp://100.64.0.3:22000"
            ];
            id = "ZJ55XB6-VJ62N4F-5LTRNV3-JMIFI3G-TKAI2BZ-42QAFNJ-QDMVJ6I-O7KHQQ6";
          };

          iphonebob = {
            addresses = [
              "tcp://192.168.1.4:22000"
              "tcp://100.64.0.4:22000"
            ];
            id = "ZD43FM5-WIZLODC-PR335XA-FQBSEQK-2ZZKWG3-UHTX57B-6VDVDCX-PPNI4AD";
          };
        };

        folders = {
          "bin" = {
            devices = [ "demiurge" "hastur" ];
            path =
              if hostname == "demiurge" then
                "/data/bin"
              else
                "/home/vin/bin";
          };

          "docs" = {
            devices = [ "demiurge" "hastur" ];
            path =
              if hostname == "demiurge" then
                "/data/docs"
              else
                "/home/vin/docs";
          };

          "emacs.d" = {
            devices = [ "demiurge" "hastur" ];
            path = "/home/vin/.emacs.d";
          };

          "kasi" = {
            devices = [ "demiurge" "hastur" ];
            path =
              if hostname == "demiurge" then
                "/data/kasi"
              else
                "/home/vin/.kasi";
          };

          "lit" = {
            devices = [ "demiurge" "hastur" ];
            path =
              if hostname == "demiurge" then
                "/data_wd/lit"
              else
                "/home/vin/lit";
          };

          "pics" = {
            devices = [ "demiurge" "hastur" ];
            path =
              if hostname == "demiurge" then
                "/data_wd/pics"
              else
                "/home/vin/pics";
          };

          "iphone" = {
            devices = [ "demiurge" "hastur" "iphonebob" ];
            path =
              if hostname == "demiurge" then
                "/data_wd/iphone"
              else
                "/home/vin/iphone";
          };
        };
      };
    };
  };

	xdg = {
		enable = true;

    configFile = {
      "qutebrowser/theme.py".text = ''
# Colors.
bg0     = "${colors.current.primary.background}"
bg1     = "${colors.current.normal.black}"
bg2     = "${colors.current.bright.black}"
fg0     = "${colors.current.primary.foreground}"
fg1     = "${colors.current.normal.white}"
red     = "${colors.current.normal.red}"
blue    = "${colors.current.normal.blue}"
green   = "${colors.current.normal.green}"
yellow  = "${colors.current.normal.yellow}"
cyan    = "${colors.current.normal.cyan}"
magenta = "${colors.current.normal.magenta}"

# --- Applying colors --- #

# Completion menu.
c.colors.completion.category.bg                 = bg1
c.colors.completion.category.border.top         = bg0
c.colors.completion.category.border.bottom      = bg0
c.colors.completion.category.fg                 = fg0
c.colors.completion.even.bg                     = bg1
c.colors.completion.odd.bg                      = bg1
c.colors.completion.item.selected.bg            = bg2
c.colors.completion.item.selected.border.bottom = bg2
c.colors.completion.item.selected.border.top    = bg2
c.colors.completion.item.selected.fg            = blue
c.colors.completion.item.selected.match.fg      = blue
c.colors.completion.match.fg                    = red
c.colors.completion.odd.bg                      = bg1
c.colors.completion.scrollbar.fg                = fg0
c.colors.completion.scrollbar.bg                = bg1

# Statusline.
c.colors.statusbar.caret.bg                     = bg0
c.colors.statusbar.caret.fg                     = magenta
c.colors.statusbar.caret.selection.bg           = bg0
c.colors.statusbar.caret.selection.fg           = red
c.colors.statusbar.command.bg                   = bg0
c.colors.statusbar.command.fg                   = fg0
c.colors.statusbar.insert.bg                    = bg0
c.colors.statusbar.insert.fg                    = green
c.colors.statusbar.normal.bg                    = bg0
c.colors.statusbar.normal.fg                    = fg0
c.colors.statusbar.passthrough.bg               = bg0
c.colors.statusbar.passthrough.fg               = blue
c.colors.statusbar.private.bg                   = bg0
c.colors.statusbar.private.fg                   = fg0
c.colors.statusbar.progress.bg                  = green
c.colors.statusbar.url.error.fg                 = red
c.colors.statusbar.url.fg                       = fg0
c.colors.statusbar.url.hover.fg                 = cyan
c.colors.statusbar.url.success.http.fg          = green
c.colors.statusbar.url.success.https.fg         = green
c.colors.statusbar.url.warn.fg                  = yellow

# Tabline.
c.colors.tabs.bar.bg                            = bg0
c.colors.tabs.even.bg                           = bg1
c.colors.tabs.even.fg                           = fg1
c.colors.tabs.indicator.error                   = red
c.colors.tabs.indicator.start                   = blue
c.colors.tabs.indicator.stop                    = green
c.colors.tabs.indicator.system                  = "rgb"
c.colors.tabs.odd.bg                            = bg1
c.colors.tabs.odd.fg                            = fg1
c.colors.tabs.pinned.even.bg                    = bg2
c.colors.tabs.pinned.even.fg                    = fg1
c.colors.tabs.pinned.odd.bg                     = bg2
c.colors.tabs.pinned.odd.fg                     = fg1
c.colors.tabs.pinned.selected.even.bg           = bg0
c.colors.tabs.pinned.selected.even.fg           = green
c.colors.tabs.pinned.selected.odd.bg            = bg0
c.colors.tabs.pinned.selected.odd.fg            = green
c.colors.tabs.pinned.selected.even.bg           = bg0
c.colors.tabs.pinned.selected.even.fg           = blue
c.colors.tabs.selected.odd.bg                   = bg0
c.colors.tabs.selected.odd.fg                   = fg0
c.colors.tabs.selected.even.bg                  = bg0
c.colors.tabs.selected.even.fg                  = fg0

# Hints.
c.colors.hints.bg                               = bg2
c.colors.hints.fg                               = fg0
c.colors.hints.match.fg                         = red
c.hints.border                                  = "2px solid " + bg1

# Messages.
c.colors.messages.error.bg                      = bg1
c.colors.messages.error.border                  = bg1
c.colors.messages.error.fg                      = red
c.colors.messages.info.bg                       = bg1
c.colors.messages.info.border                   = bg1
c.colors.messages.info.fg                       = blue
c.colors.messages.warning.bg                    = bg1
c.colors.messages.warning.border                = bg1
c.colors.messages.warning.fg                    = yellow

# Download bar.
c.colors.downloads.bar.bg                       = bg0
c.colors.downloads.error.bg                     = bg2
c.colors.downloads.error.fg                     = red
c.colors.downloads.start.bg                     = bg2
c.colors.downloads.start.fg                     = blue
c.colors.downloads.stop.bg                      = bg2
c.colors.downloads.stop.fg                      = green

# Keyhints.
c.colors.keyhint.bg                             = bg0
c.colors.keyhint.fg                             = fg0
c.colors.keyhint.suffix.fg                      = yellow

# Default color for about:blank pages (or if the css didn't specify)
#c.colors.webpage.bg                             = bg1

# Context menu.
c.colors.contextmenu.disabled.bg                = bg1
c.colors.contextmenu.disabled.fg                = fg1
c.colors.contextmenu.menu.bg                    = bg1
c.colors.contextmenu.menu.fg                    = fg0
c.colors.contextmenu.selected.bg                = bg2
c.colors.contextmenu.selected.fg                = blue

# Prompts.
c.colors.prompts.bg                             = bg1
c.colors.prompts.border                         = "2px solid " + bg0
c.colors.prompts.fg                             = fg0
c.colors.prompts.selected.bg                    = bg2
c.colors.prompts.selected.fg                    = blue
      '';

      "qutebrowser/redirectors.py".text = ''
# I don't remember who I took this from. probably in qutebrowser m$hub issues

import operator, re, typing
from urllib.parse import urljoin

from qutebrowser.api import interceptor, message
from PyQt6.QtCore import QUrl

def _pastebin_redir(url: QUrl) -> bool:
	p = url.path().strip('/')
	if p.isalnum():
		url.setPath(urljoin("/raw/", p))
		return True
	return False

# Any return value other than a literal 'False' means we redirected
REDIRECT_MAP = {
	"new.reddit.com": operator.methodcaller('setHost', 'redlib.demiurge.epistemia'),
	"np.reddit.com": operator.methodcaller('setHost', 'redlib.demiurge.epistemia'),
	"old.reddit.com": operator.methodcaller('setHost', 'redlib.demiurge.epistemia'),
	"reddit.com": operator.methodcaller('setHost', 'redlib.demiurge.epistemia'),
	"www.reddit.com": operator.methodcaller('setHost', 'redlib.demiurge.epistemia'),

    "www.youtube.com": operator.methodcaller('setHost', 'invidious.demiurge.epistemia'),
    "youtube.com": operator.methodcaller('setHost', 'invidious.demiurge.epistemia'),
    "youtu.be": operator.methodcaller('setHost', 'invidious.demiurge.epistemia'),

    "imgur.com": operator.methodcaller('setHost', 'rimgo.bloat.cat'),
    "i.imgur.com": operator.methodcaller('setHost', 'rimgo.bloat.cat'),

	# Causes an infinite loop if the paste does not exist...
	"pastebin.com": _pastebin_redir,
    } # type: typing.Dict[str, typing.Callable[..., typing.Optional[bool]]]

def int_fn(info: interceptor.Request):
	"""Block the given request if necessary."""
	if (info.resource_type != interceptor.ResourceType.main_frame or
			info.request_url.scheme() in {"data", "blob"}):
		return
	url = info.request_url
	redir = REDIRECT_MAP.get(url.host())
	if redir is not None and redir(url) is not False:
		message.info("Redirecting to " + url.toString())
		info.redirect(url)

interceptor.register(int_fn)
      '';
    };

		mimeApps = {
			enable = true;
			defaultApplications = {
				"application/pdf" = [ "zathura.desktop" ];
				"application/xhtml+xml" = [ "qutebrowser.desktop" "librewolf.desktop" ];
				"text/html" = [ "qutebrowser.desktop" "librewolf.desktop" ];
				"text/xml" = [ "qutebrowser.desktop" "librewolf.desktop" ];
			};
		};

		userDirs = {
			createDirectories = false;
			desktop = "$HOME/";
			documents = "$HOME/docs";
			download = "$HOME/tmp";
			music = "$HOME/music";
			pictures = "$HOME/pics";
			publicShare = "$HOME/";
			templates = "$HOME/";
			videos = "$HOME/";
		};
	};

  wayland.windowManager.sway = {
		enable = true;
    package = pkgs.swayfx;

    # https://github.com/nix-community/home-manager/issues/5379#issuecomment-2096066969
    checkConfig = false;

		config = {
      input."type:pointer".accel_profile = "flat";
      output."*".background = "~/pics/wp/elite_milky_way_below.png center";

			bars = [ {
				colors = {
          #						background = colors.current.primary.background;
					background = "#000000";
					statusline = colors.current.primary.foreground;
					focusedWorkspace = {
						background = colors.current.normal.black;
						border = colors.current.normal.black;
						text = colors.current.normal.green;
					};
					activeWorkspace = {
						background = colors.current.normal.black;
						border = colors.current.normal.black;
						text = colors.current.primary.foreground;
					};
					inactiveWorkspace = {
						background = colors.current.primary.background;
						border = colors.current.primary.background;
						text = colors.current.normal.white;
					};
				};
				command = "${pkgs.sway}/bin/swaybar";
				position = "top";
				statusCommand = "while date +'%Y-%m-%d %X'; do sleep 1; done";
			} ];

			colors = {
				focused = {
					background = colors.current.primary.background;
					border = colors.current.primary.background;
					childBorder = colors.current.primary.background;
					indicator = colors.current.normal.black;
					text = colors.current.normal.green;
				};
				focusedInactive = {
					background = colors.current.primary.background;
					border = colors.current.primary.background;
					childBorder = colors.current.primary.background;
					indicator = colors.current.normal.black;
					text = colors.current.primary.foreground;
				};
				unfocused = {
					background = colors.current.normal.black;
					border = colors.current.normal.black;
					childBorder = colors.current.normal.black;
					indicator = colors.current.primary.background;
					text = colors.current.normal.white;
				};
			};

      focus = {
			  mouseWarping = true;
        wrapping = "yes";
      };

			fonts = {
				names = [ "monospace" ];
				size = 11.0;
			};

      gaps = {
        inner = 15;
        smartGaps = true;
      };

			keybindings =
				let
					left = "n";
					down = "e";
					up = "o";
					right = "i";
					modifier = config.wayland.windowManager.sway.config.modifier;
					menu = config.wayland.windowManager.sway.config.menu;
					terminal = config.wayland.windowManager.sway.config.terminal;
				in lib.mkOptionDefault {
					"${modifier}+Return" = "exec ${terminal}";
					"${modifier}+p" = "exec ${menu}";
					"${modifier}+b" = "exec bm t";
					"${modifier}+Shift+b" = "exec kasimenu";
					"${modifier}+u"	= "exec kasimenu user";
					"${modifier}+Shift+u" = "exec kasimenu email";
					"${modifier}+Shift+t" = "exec kasimenu_totp";

					"${modifier}+Shift+q" = "kill";
					"${modifier}+Shift+c" = "reload";
					"Mod1+Mod4+Ctrl+Shift+e" = "exit";

					"${modifier}+${left}" = "focus left;";
					"${modifier}+${down}" = "focus down;";
					"${modifier}+${up}" = "focus up;";
					"${modifier}+${right}" = "focus right;";
					"${modifier}+Shift+${left}" = "move left";
					"${modifier}+Shift+${down}" = "move down";
					"${modifier}+Shift+${up}" = "move up";
					"${modifier}+Shift+${right}" = "move right";

					# TODO do this programatically
					"${modifier}+1" = "workspace number 1";
					"${modifier}+2" = "workspace number 2";
					"${modifier}+3" = "workspace number 3";
					"${modifier}+4" = "workspace number 4";
					"${modifier}+5" = "workspace number 5";
					"${modifier}+6" = "workspace number 6";
					"${modifier}+7" = "workspace number 7";
					"${modifier}+8" = "workspace number 8";
					"${modifier}+9" = "workspace number 9";
					"${modifier}+0" = "workspace number 10";
					"${modifier}+Shift+1" = "move container to workspace number 1";
					"${modifier}+Shift+2" = "move container to workspace number 2";
					"${modifier}+Shift+3" = "move container to workspace number 3";
					"${modifier}+Shift+4" = "move container to workspace number 4";
					"${modifier}+Shift+5" = "move container to workspace number 5";
					"${modifier}+Shift+6" = "move container to workspace number 6";
					"${modifier}+Shift+7" = "move container to workspace number 7";
					"${modifier}+Shift+8" = "move container to workspace number 8";
					"${modifier}+Shift+9" = "move container to workspace number 9";
					"${modifier}+Shift+0" = "move container to workspace number 10";

					"${modifier}+Ctrl+Shift+b" = "splith";
					"${modifier}+Ctrl+Shift+v" = "splitv";
					"${modifier}+s" = "layout stacking";
					"${modifier}+t" = "layout tabbed";
					"${modifier}+Ctrl+Shift+t" = "layout toggle split";
					"${modifier}+Shift+f" = "fullscreen";
					"${modifier}+Shift+space" = "floating toggle";
					"${modifier}+space" = "focus mode_toggle";
					"${modifier}+a" = "focus parent";

					"${modifier}+r" = "mode resize";
				};

			menu = "${pkgs.wmenu}/bin/wmenu-run";

			modes.resize =
				let
					left = "n";
					down = "e";
					up = "o";
					right = "i";
				in lib.mkOptionDefault {
					${left} = "resize shrink width 10px";
					${down} = "resize grow height 10px";
					${up} = "resize shrink width 10px";
					${right} = "resize grow width 10px";
					Escape = "mode default";
				};

			modifier = "Mod4";

			terminal = "foot";

			window = {
				border = 0;
				titlebar = false;
			};

      defaultWorkspace = "workspace number 1";
			workspaceAutoBackAndForth = true;
    };

    extraConfig = ''
      mouse_warping container

      blur enable
      blur_xray disable
      blur_radius 3
      blur_passes 5

      corner_radius 10

      shadows enable
      shadow_blur_radius 10

      for_window [class="Emacs"] opacity 0.9
      for_window [app_id="qutebrowser"] opacity 0.9
      for_window [app_id="vesktop"] opacity 0.9

      for_window [title="profanity"] move container to workspace 9
      for_window [app_id="vesktop"] move container to workspace 10

      xwayland disable

      exec ${pkgs.qutebrowser}/bin/qutebrowser
      exec ${pkgs.vesktop}/bin/vesktop --use-vulkan --ozone-platform=wayland --enable-features=UseOzonePlatform,Vulkan
      exec ${config.wayland.windowManager.sway.config.terminal} -T profanity -e ${pkgs.profanity}/bin/profanity
    '';
	};
}