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
|
# Changelog
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
- - -
## v1.20.1 - 2023-12-19
#### Bug Fixes
- **(hm/pkgs/src/spodi)** Use correct quoting in arguments - (1d745e2) - Soispha
- - -
## v1.20.0 - 2023-12-19
#### Build system
- **(treewide)** Update - (162861d) - Soispha
#### Features
- **(hm/pkgs/src/spodi)** Rework command line arguments - (19ce222) - Soispha
#### Miscellaneous Chores
- **(treewide)** Update shell library - (9da9103) - Soispha
- - -
## v1.19.1 - 2023-12-18
#### Bug Fixes
- **(hm/pkgs/scr/lyrics)** Add missing dependency - (b08b1ff) - Soispha
- - -
## v1.19.0 - 2023-12-18
#### Bug Fixes
- **(hm/pkgs/scr/spodi)** Use the full range of audio providers - (0dcf2ff) - Soispha
- **(hm/pkgs/src/lyrics)** Use less instead of cat - (35af94a) - Soispha
- **(hm/wms/river/init)** Set env vars from nix config - (abed162) - Soispha
#### Build system
- **(treewide)** Update - (e0cd17c) - Soispha
#### Features
- **(hm/pkgs/src/lyrics)** Init - (ac7b211) - Soispha
- **(hm/pkgs/src/mpc-rm)** Provide a command to remove current song - (1b97796) - Soispha
- - -
## v1.18.1 - 2023-12-12
#### Bug Fixes
- **(hm/pkgs/scr/fupdate)** Keep path to allow finding subcommands - (244dd66) - Soispha
- - -
## v1.18.0 - 2023-12-12
#### Bug Fixes
- **(hm/pkgs/scr/neorg)** Use new way to specify completion function - (b0c158a) - Soispha
- **(hm/pkgs/scr/spodi)** Reactive, as spotdl builds again - (a377c01) - Soispha
- **(hm/pkgs/src/con2pdf)** Prepare shell version update - (0f6523f) - Soispha
- **(hm/wms/river/init)** Don't use error handling for setting variables - (1c46c4f) - Soispha
- **(hm/wms/river/keys)** Use new screenshot script - (05adc66) - Soispha
#### Build system
- **(treewide)** Update - (6d425ad) - Soispha
#### Features
- **(hm/pkgs/scr/fupdate)** Move fupdate in my main config tree - (4dc8091) - Soispha
- **(hm/pkgs/scrs/screenshot)** Add better persistent and temporary script - (9a7988c) - Soispha
#### Miscellaneous Chores
- **(hm/pkgs/scr/llp)** Delete llp, as it's not necessary on Wayland - (3847781) - Soispha
- **(hm/pkgs/scrs)** Delete unused and deprecated scripts - (693f5d1) - Soispha
- **(treewide)** Update shell library version number - (4a91b6c) - Soispha
- - -
## v1.17.1 - 2023-12-10
#### Bug Fixes
- **(hm/conf/nvim/plgs/harpoon)** Use version locked to the old branch - (78d136c) - Soispha
- - -
## v1.17.0 - 2023-12-09
#### Bug Fixes
- **(flake)** Use self instead of a reimport of itself - (e97702e) - Soispha
- **(flake)** Remove the pkgs from the devenv, which are already in nvim - (113499d) - Soispha
- **(hm/conf/firefox/package)** Readd policies to firefox - (2f28361) - Soispha
- **(hm/conf/firefox/pkg)** Adapt to new override options in nixpkgs - (3f3141e) - Soispha
- **(hm/conf/firefox/policies)** Use correct attr name - (000027f) - Soispha
- **(hm/conf/firefox/profs)** Put all downloads into the download dir - (5bdc12e) - Soispha
- **(hm/conf/nvim/ftplgs/tex)** Use newer nvim keymaps api - (361a25b) - Soispha
- **(hm/conf/nvim/lsp/rust-analyzer)** Don't install rustc and cargo - (ddf0a22) - Soispha
- **(hm/conf/nvim/plgs/lsp/server/pylyzer)** Disable again - (7f9d68c) - Soispha
- **(hm/conf/nvim/plgs/vim-tex)** Use treesitter highlight - (7a6266c) - Soispha
- **(hm/pkgs/scr/con2pdf)** Fix command usage errors - (d2cd292) - Soispha
- **(hm/pkgs/scripts)** Use the library function correctly - (a7c8259) - Soispha
- **(hm/pkgs/spodi)** Disable, as spotdl doesn't build right now - (81fdc51) - Soispha
- **(hm/pkgs/src/con2pdf)** Fully support n pages, instead of 2 - (ec76bfb) - Soispha
- **(hm/pkgs/srcs/con2pdf)** Limit the file search depth - (35cde91) - Soispha
- **(hm/pkgs/srcs/neorg)** Prepare to new shell-library version - (203ad54) - Soispha
- **(sys/impermanence)** Persist the postgresql datebase, if it exists - (b01d2db) - Soispha
- **(sys/nixpkgs/plgs-pkgs/override)** Add only actually used plugins - (31f0c39) - Soispha
- **(sys/svcs/xdg/portals)** Use new configuration scheme - (b57ee1e) - Soispha
#### Build system
- **(flake)** Update - (bafd46f) - Soispha
- **(flake)** Update - (a38b54b) - Soispha
- **(flake)** Update - (fe1cd67) - Soispha
- **(treewide)** Update - (c5f2993) - Soispha
- **(treewide)** Update shell library - (437bf84) - Soispha
- **(treewide)** Update - (5f9a797) - Soispha
- **(treewide)** Update - (bdf5e03) - Soispha
- **(treewide)** Update - (e4454f8) - Soispha
#### Documentation
- **(hm/conf/nvim/plgs/treesitter)** Improve comments - (402925c) - Soispha
#### Features
- **(hm/conf/nvim/plgs/lsp/ltex)** Also activate in `mail` files - (cde288b) - Soispha
- **(hm/conf/nvim/plgs/lsp/servers)** Add python language servers - (f440a08) - Soispha
- **(hm/pkgs/scrs/con2pdf)** Enable completions - (9d4e1de) - Soispha
- **(sys/srvs/postgresql)** Re-enable - (3f2f515) - Soispha
- **(treewide)** Specify nvim plugins in my flake - (b6302ae) - Soispha
#### Miscellaneous Chores
- **(hm/soispha/conf/taskwarrior/projects)** Update - (963062f) - Soispha
- **(treewide)** Update shell library - (da8f3ab) - Soispha
- - -
## v1.16.0 - 2023-10-28
#### Bug Fixes
- **(flake)** Lock unstable version, until flask-sqlalchemy builds - (0cb2f95) - Soispha
- **(flake)** Restore to last working git revision because of harpoon - (6a1cc3b) - Soispha
- **(flake)** Pin nixpkgs on a rev because nvim update brakes some plugins - (b8f170d) - Soispha
- **(hm/conf/firefox/conf/extensions/nmh)** Replace phase override - (9772cc3) - Soispha
- **(hm/conf/firefox/conf/exts/nmh)** Spell 'messaging' correctly - (c99677e) - Soispha
- **(hm/conf/firefox/conf/policies)** Allow extensions to be installed - (a340ae8) - Soispha
- **(hm/conf/firefox/conf/policies)** Explicitly enable devtools - (dc44085) - Soispha
- **(hm/conf/firefox/conf/policies)** Correct typo in policy name - (f49f759) - Soispha
- **(hm/conf/firefox/conf/policies)** Remove policies attr name - (842efea) - Soispha
- **(hm/conf/firefox/conf/prefs)** Disable translation for some languages - (097646e) - Soispha
- **(hm/conf/firefox/conf/prefs)** Set default toolbox location - (a6d5918) - Soispha
- **(hm/conf/firefox/conf/search/engines)** Disable eBay - (496c8c7) - Soispha
- **(hm/conf/firefox/extensions)** Remove simple tab groups - (8ddcd2a) - Soispha
- **(hm/conf/firefox/extensions/nmh)** Use correct name in json file - (13dfc3d) - Soispha
- **(hm/conf/firefox/extensions/nmh)** Fully rename to video pause - (329d3e5) - Soispha
- **(hm/conf/firefox/scr/extensions)** Add sane 'default_area's - (5de7ae2) - Soispha
- **(hm/conf/firefox/scr/extensions)** Add required 'default_area' - (05d315a) - Soispha
- **(hm/conf/lf/cmds/mk_scr_temp)** Set the interpreter to 'sh' - (ce99b2f) - Soispha
- **(hm/conf/nvim)** Update to new keymap format - (8fbcfc8) - Soispha
- **(hm/conf/nvim/maps)** Remove exit after 'o' - (af520d2) - Soispha
- **(hm/conf/nvim/plgs/harpoon)** Enable Telescope extension - (856d9c3) - Soispha
- **(hm/conf/nvim/plgs/leap)** Map things to 'j' - (84451dd) - Soispha
- **(hm/conf/nvim/plgs/telescope/exts/bibtex)** Mark action as empty - (7833f47) - Soispha
- **(hm/conf/rofi)** Select a better theme - (70ef656) - Soispha
- **(hm/conf/swayidle)** Show indicator in 'swaylock' when locking - (a046c0e) - Soispha
- **(hm/conf/swaylock)** Correctly scale the image on the screen - (c966bab) - Soispha
- **(hm/conf/task)** Update to new taskd identities - (ed320f2) - Soispha
- **(hm/conf/taskwarrior)** Specify useful coefficients for priorities - (a4aff91) - Soispha
- **(hm/conf/taskwarrior/firefox)** Projects start at a zero index - (43c44e8) - Soispha
- **(hm/conf/taskwarrior/firefox)** Generate the profile ids by counting - (7f158fa) - Soispha
- **(hm/conf/taskwarrior/theme)** Make the lowest priority readable - (e172f11) - Soispha
- **(hm/conf/taswarrior/projects)** Remove duplicates before further processing - (b0879b2) - Soispha
- **(hm/pkgs/scr/neorg)** Use path to file, to circumvent escaping - (7e643ae) - Soispha
- **(hm/pkgs/scr/neorg)** Remove leading whitespace in message - (50cba06) - Soispha
- **(hm/pkgs/scr/neorg)** Remove 'set -e' - (8d1e58c) - Soispha
- **(hm/pkgs/scr/neorg)** Add cocogitto and git-crypt as dependencies - (c762f02) - Soispha
- **(hm/pkgs/scr/neorg)** Correctly replace and add project_path - (e5a5ed1) - Soispha
- **(hm/pkgs/scr/neorg)** Remove 'f' from set options - (3a216aa) - Soispha
- **(hm/pkgs/scr/neorg)** Cd to dirname of package file - (989862b) - Soispha
- **(hm/pkgs/scr/neorg)** Run search _after_ loading first file - (9a80fde) - Soispha
- **(hm/pkgs/scr/neorg)** Correctly cd to the project directory - (b8ab1f5) - Soispha
- **(hm/pkgs/scr/neorg)** Silence 'task', when it can't find the rc element - (ee2950f) - Soispha
- **(hm/pkgs/scr/neorg)** Cd with nvim to the project dir - (31ac642) - Soispha
- **(hm/pkgs/scrs/neorg)** Add a fallback check for the neorg_path - (f8d7663) - Soispha
- **(hm/pkgs/src/neorg)** Fix some branch executions - (1253a89) - Soispha
- **(hm/pkgs/src/neorg)** Fix typo - (81ab30e) - Soispha
- **(hm/pkgs/src/neorg)** Add missing newline between help and version - (0552261) - Soispha
- **(hm/pkgs/src/neorg)** Only commit when something has changed - (ba3b25b) - Soispha
- **(hm/pkgs/src/neorg)** Don't fall through, if the user exits early - (db677d4) - Soispha
- **(hm/soispha/conf/git/git_template)** Use lowercase type names - (c0e609b) - Soispha
- **(hm/soispha/conf/nvim/plgs/nvim-cmp)** Remove buffer source - (e85de3f) - Soispha
- **(hm/soispha/nvim/plgs/nvim-cmp)** Disable diagraphs - (15e05fe) - Soispha
- **(hm/wms/river/res/keys)** Set up correct mappings for all hosts - (948e025) - Soispha
- **(sys/font)** Add required font for rofi theme - (1968389) - Soispha
#### Build system
- **(flake)** Update - (87d3861) - Soispha
- **(flake)** Update (+ shell_library) - (1378514) - Soispha
- **(flake)** Add a dummy follow for 'my_flake' to prevent a cyclic dependency - (faf3d03) - Soispha
- **(flake)** Update to a recent nixos-unstable version - (dac96c0) - Soispha
- **(treewide)** Update - (a504eff) - Soispha
- **(treewide)** Update (+ shell_library) - (2cb6a14) - Soispha
- **(treewide)** Update (+ shell-library) - (4b08a82) - Soispha
- **(treewide)** Update - (0fbfd6a) - Soispha
- **(treewide)** Update - (48e8100) - Soispha
- **(treewide)** Update - (9e112d9) - Soispha
- **(treewide)** Update - (5869360) - Soispha
- **(treewide)** Update - (20ae0f6) - Soispha
- **(treewide)** Update (shell library) - (338e400) - Soispha
- **(treewide)** Update - (6aa67e4) - Soispha
- **(treewide)** Update - (26bcc19) - Soispha
#### Documentation
- **(notes/git_crypt)** Explain what to do, when git-crypt fails - (876bcf7) - Soispha
- **(notes/names)** Add a comment about the naming scheme for new hosts - (3f5f718) - Soispha
#### Features
- **(hm)** Expose the video_pause binary - (1500f45) - Soispha
- **(hm/conf/firefox)** Use the policy.json file for configs - (27a254a) - Soispha
- **(hm/conf/firefox/extensions)** Switch to my libredirect fork - (a780ce0) - Soispha
- **(hm/conf/firefox/extensions)** Add torproject-snowflake - (583db50) - Soispha
- **(hm/conf/firefox/scripts)** Package through the flake outputs - (4271564) - Soispha
- **(hm/conf/nvim/plgs/nvim-cmp)** Add sources - (838d1ec) - Soispha
- **(hm/conf/rofi)** Init - (72b0ec0) - Soispha
- **(hm/conf/soispha/git)** Add alias for redoing a failed commit - (e38ef7f) - Soispha
- **(hm/conf/swaylock)** Change the image to a GTD inspired one - (9296e6c) - Soispha
- **(hm/conf/taskwarrior)** Automatically save the task data in a git repo - (74e1851) - Soispha
- **(hm/conf/taswarrior)** Generate a firefox profile per project - (3332094) - Soispha
- **(hm/pkgs/scr/neorg)** Update help to include ARGUMENTS section - (773d7bc) - Soispha
- **(hm/pkgs/scr/neorg)** Add support for Firefox context specific profiles - (ba9fa34) - Soispha
- **(hm/pkgs/scr/neorg)** Support task specific heads in norg files - (e2d84ec) - Soispha
- **(hm/pkgs/src/neorg)** Use rofi as profile picker - (fc488b8) - Soispha
- **(hm/pkgs/src/neorg)** Active completion generation - (940bcd8) - Soispha
- **(hm/soispha/git)** Add 'cm' (commit) alias - (0dcbdc9) - Soispha
- **(hm/wms/river/keys)** Use rofi in the mappings - (3134d5e) - Soispha
- **(sys/svcs/nix)** Add my flake to the flake registry - (db1f4d6) - Soispha
#### Miscellaneous Chores
- **(hm/conf/taskwarrior/projects)** Update - (b52543b) - Soispha
- **(hm/conf/taskwarrior/projects)** Update - (d1be07b) - Soispha
- **(hm/conf/taskwarrior/projects)** Update - (02be0c1) - Soispha
- **(hm/conf/taskwarrior/projects)** Update - (a2f8eee) - Soispha
- **(hm/conf/taskwarrior/projects)** Update - (f0b1194) - Soispha
- **(hm/conf/taskwarrior/projects)** Update - (e31eed6) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (b3c6033) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (a1ffa42) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (7fd8f08) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (6d14207) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (0d2e089) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (7d12631) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (c0f05b0) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (27ccd5d) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (f0ed650) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (f02f1a7) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (131ac87) - Soispha
#### Refactoring
- **(hm/conf/taskwarrior/projects)** Store the parsed projects in a attr - (4f0dec5) - Soispha
#### Style
- **(hm/conf/firefox)** Format with alejandra - (629325d) - Soispha
- **(hm/conf/taskwarrior)** Format - (edc46b9) - Soispha
- - -
## v1.15.0 - 2023-10-08
#### Bug Fixes
- **(flake/packages)** Remove gpg-iso as it's not used - (8d33dd8) - Soispha
- **(flake/packages)** Apply eta-reduction - (d2f4920) - Soispha
- **(hm/conf/lf/keybinds)** Add keymap to go to nixos-server config - (c7963f3) - Soispha
- **(hm/conf/nvim/autocmds)** Use 'desc' instead of 'description' - (9721082) - Soispha
- **(hm/conf/python)** Set the sessionVariables in zsh context - (170d960) - Soispha
- **(hm/conf/python)** Move python history file to a persistent location - (956f029) - Soispha
- **(hm/conf/taskserver)** Update to new let's encrypt certificate - (ddac6a6) - Soispha
- **(hm/conf/taskserver)** Use dots to separate projects - (9c5dd8b) - Soispha
- **(hm/conf/taskwarrior)** Remove useless aliases - (0f2cf9d) - Soispha
- **(hm/conf/taskwarrior)** Add 'total_active_time' to next report - (8faedf4) - Soispha
- **(hm/conf/taskwarrior/hooks)** Check in every hook the started tasks - (7f4c7f9) - Soispha
- **(hm/conf/taskwarrior/hooks/on-add_policies)** Support Numbers in projects - (75cebef) - Soispha
- **(hm/conf/taskwarrior/hooks/policies)** Also check subprojects - (603158c) - Soispha
- **(hm/conf/taskwarrior/hooks/track_timewarrior)** Specify python dep - (5d39712) - Soispha
- **(hm/conf/taskwarrior/projects)** Update - (076f8b3) - Soispha
- **(hm/conf/taskwarrior/projects)** Add further projects - (b377694) - Soispha
- **(hm/conf/taskwarrior/projects)** Add further projects - (de245cd) - Soispha
- **(hm/conf/taskwarrior/projects)** Add projects - (deb378f) - Soispha
- **(hm/conf/taskwarrior/projects)** Add further projects - (d63ba87) - Soispha
- **(hm/conf/taskwarrior/theme)** Make errors readable - (b839b3e) - Soispha
- **(hm/conf/taswarrior/projects)** Update - (5fc2df2) - Soispha
- **(hm/conf/timewarrior)** Use correct file creation syntax - (680150d) - Soispha
- **(hm/conf/timewarrior)** Actually import timewarrior - (12a0eb1) - Soispha
- **(sys/secrets)** Rename 'name' to 'hostName' - (0cb2eab) - Soispha
#### Build system
- **(flake)** Update - (5044f24) - Soispha
#### Features
- **(hm/conf/taskwarrior)** Add taskserver based syncing - (cacaeac) - Soispha
- **(hm/conf/taskwarrior)** Add hook scripts - (3a9a44d) - Soispha
- **(hm/conf/taskwarrior)** Add first config for neorg ⇄ taskwarrior interop - (4d8f53f) - Soispha
- **(hm/conf/taskwarrior/projects)** Add support for nested projects - (6f38b01) - Soispha
- **(hm/conf/timewarrior)** Init - (563938d) - Soispha
- **(hm/pkgs/scrs/neorg)** Add support for opening current task context - (7d56f48) - Soispha
#### Miscellaneous Chores
- **(hm/conf/taskwarrior/projects)** Update - (bf16973) - Soispha
- **(revert)** "fix(hm/conf/taskwarrior): Add 'total_active_time' to next report" - (e55fdd9) - Soispha
#### Style
- **(hm/pkgs/scripts)** Reorder alphabetically - (9e3315c) - Soispha
- - -
## v1.14.0 - 2023-10-01
#### Bug Fixes
- **(hm/conf/firefox/prefs)** Use defined download dir - (b973cf1) - Soispha
- **(hm/conf/firefox/search)** Only update icons every two days - (dedba1c) - Soispha
- **(hm/conf/firefox/search)** Add home-manager search as search engine - (cd5d35c) - Soispha
- **(hm/conf/lf/cmds/archive)** Remove old `tmp` call - (a47c598) - Soispha
- **(hm/conf/nvim/files/ftplugin/tex)** Add file to correct path - (4fdeac9) - Soispha
- **(hm/conf/nvim/plgs/lsp/ltex)** Deactivate in rust, as it's bothersome - (8bef048) - Soispha
- **(hm/conf/taskwarrior)** Specify news.version persistently - (9b74754) - Soispha
- **(hm/conf/zsh)** Display current task on shell init - (34147c6) - Soispha
- **(hm/pkgs/scrs/wrappers/yti)** Rework to today's standards - (af1dc59) - Soispha
#### Build system
- **(flake)** Update - (1516351) - Soispha
- **(flake)** Update - (0252379) - Soispha
- **(treewide)** Update - (ee7e01e) - Soispha
#### Features
- **(hm/conf/firefox/search)** Add tokio-rs docs to search engines - (6e14439) - Soispha
- **(hm/conf/hyfetch)** Init - (77f8641) - Soispha
- **(hm/conf/taskwarrior)** Init - (c40c744) - Soispha
- - -
## v1.13.0 - 2023-09-17
#### Bug Fixes
- **(hm/conf/firefox/scripts/extract_cookies)** Init - (b2dcfe4) - Soispha
- **(hm/conf/firefox/scripts/unzip_mozl4)** Change to correct shebang - (c518d2e) - Soispha
- **(hm/conf/nvim/plgs/nvim-lint)** Remove shellcheck, as bash ls exits - (b5d2d70) - Soispha
- **(hosts/tiamat)** Enable adb bridge for soispha - (fb3ff58) - Soispha
#### Build system
- **(flake)** Update - (d450bd2) - Soispha
- **(treewide)** Update - (4665b34) - Soispha
#### Features
- **(sys/srvs/adb)** Init - (7c90c15) - Soispha
#### Style
- **(sys/srvs/adb)** Format with alejandra - (01c286e) - Soispha
- - -
## v1.12.0 - 2023-09-16
#### Bug Fixes
- **(hm/pkgs/scritps/neorg)** Add ability to access workspace directly - (c7ac896) - Soispha
- **(treewide)** Update to new `tmp` function interface - (8fed302) - Soispha
- **(treewide)** Update shell library - (21c0fae) - Soispha
- **(treewide)** Update to the newest shell lib version - (9ba4a13) - Soispha
- **(treewide)** Purge `snap-sync` in favour of `snap-sync-forked` - (cb13265) - Soispha
- **(treewide)** Provide `snap-synced-forked` as overlay and thus as pkg - (e573fc9) - Soispha
#### Build system
- **(flake)** Update - (24afaa8) - Soispha
- **(flake)** Update - (4b353ca) - Soispha
#### Features
- **(hm/conf/zsh/insults)** Init - (ca4bd2f) - Soispha
- - -
## v1.11.0 - 2023-09-05
#### Bug Fixes
- **(hm/conf/gpg/keys/key_4)** Add missing comments - (2432eba) - Soispha
- **(hm/conf/zsh)** Ensure that the sourced shell library also gets updated - (441249a) - Soispha
#### Build system
- **(flake)** Update - (06b286d) - Soispha
#### Features
- **(hm/conf/gpg/keys)** Add gpg key - (f1a4ac9) - Soispha
- - -
## v1.10.0 - 2023-09-05
#### Bug Fixes
- **(hm/conf/lf/keybinds)** Fix missing settings in the cd commands - (63f844e) - Soispha
- **(hm/conf/lf/keymappings)** Add command to go to nixos-config - (1a115c3) - Soispha
- **(hm/conf/lf/keymaps)** Run the rename command in the console - (b15b661) - Soispha
- **(hm/conf/nvim/plgs/luasnip/todo_snippets)** Decapitalize my name - (d57032a) - Soispha
- **(hm/wms/river)** Use new keymaps - (892133c) - Soispha
- **(sys/impermanence)** Add waydroid image directory - (fb92fea) - Soispha
- **(sys/impermanence)** Add `/var/lib/systemd` to saved paths - (df405e6) - Soispha
- **(sys/impermanence)** Add `/var/lib/bluetooth` to saved path - (439bb90) - Soispha
- **(sys/locale/keymap)** Formatting issues - (5cb803a) - Soispha
- **(sys/locale/keymaps)** Set correct amount of levels for the `a` key - (2e6687e) - Soispha
- **(sys/locale/keymaps/us)** Use compose key and deal with qmk macros - (680b15c) - Soispha
- **(sys/locale/keymaps/us)** Switch to lalt, as caps is hard to map in qmk - (bf6c569) - Soispha
- **(sys/srvs/xdg)** Add gtk desktop portal - (851a4cf) - Soispha
- **(sys/waydroid)** Disable waydroid again, as it breaks fuse mounts - (7e12b54) - Soispha
- **(treewide)** Update to new shell library version - (f68f558) - Soispha
#### Build system
- **(treewide)** Update - (bcdba47) - Soispha
#### Documentation
- **(sys/disks/hibernate)** Remove resolved TODO comment - (d807fb1) - Soispha
#### Features
- **(flake/packages)** Pass through `shell_library_update` packages - (c0ac01f) - Soispha
- **(hm/pkgs/scripts/neorg)** Init - (c60fbe6) - Soispha
- **(sys/locale)** Add modified dvorak keymap - (a97a8df) - Soispha
- **(sys/locale)** Add a keymap with special char support - (fe00eef) - Soispha
- **(sys/waydroid)** Init - (fce35d5) - Soispha
- - -
## v1.9.1 - 2023-08-30
#### Bug Fixes
- **(hm/conf/nvim/mappings)** Switch `gg` to `uu` - (9bbbae9) - Soispha
- - -
## v1.9.0 - 2023-08-30
#### Bug Fixes
- **(.gitattributes)** Correct encrypted paths - (96d0cdd) - Soispha
- **(bootstrap)** Specify experimental-features before arguments to disko - (d58fa72) - Soispha
- **(bootstrap)** Add udevadm as a dependency - (a32a937) - Soispha
- **(bootstrap)** Use correct environment variable name - (9648ecf) - Soispha
- **(bootstrap)** Don't wrap eev, as dash does not support exec - (ee30bac) - Soispha
- **(bootstrap)** Only set environment variables once - (eb6a837) - Soispha
- **(bootstrap)** Finished scripts - (9a76c7c) - Soispha
- **(bootstrap/config_setup)** Keep path so nixos-enter stays available - (d42af9b) - Soispha
- **(bootstrap/eev)** Correct pattern matching syntax - (1be9ccf) - Soispha
- **(bootstrap/install)** Removed usage of unassigned variable - (81136ec) - Soispha
- **(bootstrap/install)** Add required path to serial id lookup - (d487b7b) - Soispha
- **(flake)** Switch to offical extra vim pluigins, not my fork - (387ff82) - Soispha
- **(flake)** Expose home-manager config to nvim config - (af387e5) - Soispha
- **(flake)** Remove Merge conflicts - (665be3f) - Soispha
- **(flake)** Add lua ls, as nvim still has some lua based config - (592bd77) - Soispha
- **(flake/nixosConfigurations)** Change formatting for the bootstrap scrs - (8ac8052) - Soispha
- **(flake/packages)** Flatten nvim pkgs to satisfy `nix flake check` - (ccb2451) - Soispha
- **(flake/packages)** Make it obvious that 'vim' is actually 'nvim' - (5e16710) - Soispha
- **(hm/conf/alacritty)** Import hints - (887cd66) - Soispha
- **(hm/conf/alacritty)** Replace space by generic whitespace - (dbde39a) - Soispha
- **(hm/conf/alacritty)** Ignore `([ ]`) in path regex - (1cd579e) - Soispha
- **(hm/conf/alacritty/bell)** Disable command as it's bothers me - (4f55bef) - Soispha
- **(hm/conf/alacritty/bell)** Enable and add command - (99eb293) - Soispha
- **(hm/conf/alacritty/color)** Don't import this - (2182454) - Soispha
- **(hm/conf/gammastep)** Go down to 3000K again as its just comfortable - (9af113b) - Soispha
- **(hm/conf/gammastep)** Adjust laptop temp to redshift night default - (beaea0c) - Soispha
- **(hm/conf/gammastep)** Use lighter settings on laptops - (8aba52c) - Soispha
- **(hm/conf/git)** Add markers to diffs when on laptop - (726104a) - Soispha
- **(hm/conf/git)** Force gpg to use the specific key - (7cef16d) - Soispha
- **(hm/conf/git)** Also sign pushes, if the server supports this - (5f6576a) - Soispha
- **(hm/conf/git)** Display branch when using git ls - (3641e33) - Soispha
- **(hm/conf/git)** Move trailers to end - (a2a0abb) - Soispha
- **(hm/conf/gpg)** Remove mutability - (6396cec) - Soispha
- **(hm/conf/gpg)** Change key_1 - (a49d3ed) - Soispha
- **(hm/conf/gpg)** Use hidden gpg keys - (393a6f6) - Soispha
- **(hm/conf/gpg)** Add config for isimud - (918ba5d) - Soispha
- **(hm/conf/gpg)** Make the keys mutable - (1c548c9) - Soispha
- **(hm/conf/leap)** Squas - (242552c) - Soispha
- **(hm/conf/lf)** Disable cursor in preview pane - (a31ba75) - Soispha
- **(hm/conf/lf)** Implement rename cmd - (7d99e6f) - Soispha
- **(hm/conf/lf)** Split file creation and edit of the made file cmds - (a082c24) - Soispha
- **(hm/conf/lf)** Add html repo keybinding - (9a893e4) - Soispha
- **(hm/conf/lf)** Update icons to nerdfonts v3 - (1309059) - Soispha
- **(hm/conf/lf/colors)** Remove bg color from exec file - (3fdfbf1) - Soispha
- **(hm/conf/lf/colors)** Add a bg color for executable files - (9f8c452) - Soispha
- **(hm/conf/lf/colors)** Add `.zshenv` file, to hidden ones - (cc7090c) - Soispha
- **(hm/conf/lf/colors)** Remove underline from executables - (05c8468) - Soispha
- **(hm/conf/lf/colors)** Adjust colors to new alacritty colorscheme - (27b92c3) - Soispha
- **(hm/conf/lf/commands)** Actually send cd command to lf instance - (d5b8646) - Soispha
- **(hm/conf/lf/commands)** Remove rename cmd as it fails on piped stdout - (e9c34bc) - Soispha
- **(hm/conf/lf/commands)** Avoid shell wrapping for c rename command - (66928b3) - Soispha
- **(hm/conf/lf/commands)** Correctly quote the id string in 'fzf_jump' cmd - (bde0dbe) - Soispha
- **(hm/conf/lf/commands)** Remove non-wrapped neovim dependency - (a5a4fec) - Soispha
- **(hm/conf/lf/icons)** Update to better looking ones - (4ed0d5d) - Soispha
- **(hm/conf/lf/icons)** Add a correct icon for files - (c8e53cc) - Soispha
- **(hm/conf/lf/keybindings)** Move the cursor to the end in rename prompt - (7876e45) - Soispha
- **(hm/conf/mail)** Git-crypt encryption - (8274f94) - Soispha
- **(hm/conf/mail)** Update non public accounts - (f651cf6) - Soispha
- **(hm/conf/mail)** Correctly import `non_public_accounts` - (8b1da38) - Soispha
- **(hm/conf/mail)** Add all needed arguments to import - (43978cb) - Soispha
- **(hm/conf/mpd)** Remove hardcoded uid in host path - (eb439ea) - Soispha
- **(hm/conf/mpd)** Set MPD_HOST variable for mpd clients - (00d88e9) - Soispha
- **(hm/conf/neovim)** Put the config file heading at the top - (7c59604) - Soispha
- **(hm/conf/neovim)** Add linter and formatters to the wrapped neovim - (02e5c23) - Soispha
- **(hm/conf/neovim)** Change mapping for cmp acceptation to 'HH' - (c65d8e6) - Soispha
- **(hm/conf/neovim)** Remove duplicate mapping, which mapped n to n - (91a46be) - Soispha
- **(hm/conf/neovim)** Remap '<C-Space>' to '<S-Tab>' as alacritty already uses it - (8ca5eee) - Soispha
- **(hm/conf/neovim)** Fully import nvim config through nixVim - (de26630) - Soispha
- **(hm/conf/neovim/autocmds)** Only show colorcolumn in insert mode - (df2ae83) - Soispha
- **(hm/conf/neovim/autocmds)** Add anchor to space replacement - (926ffc9) - Soispha
- **(hm/conf/neovim/autocmds)** Correctly apply the if conditional - (0a24326) - Soispha
- **(hm/conf/neovim/autocmds)** Add missing 'coloroverride' autocmd group - (b67a5fa) - Soispha
- **(hm/conf/neovim/mappings)** Add description to every mapping - (3892ebe) - Soispha
- **(hm/conf/neovim/mappings)** Use shift space to confirm suggestions - (f6c8ab0) - Soispha
- **(hm/conf/neovim/mappings)** Turn lf start mapping into a function - (2db3296) - Soispha
- **(hm/conf/neovim/mappings)** Correctly specify lua code - (3d0658a) - Soispha
- **(hm/conf/neovim/nixneovim)** Remove as it's replaced by nixvim - (5e788e0) - Soispha
- **(hm/conf/neovim/options)** Reduce timeout as that is used by which-key - (32719e2) - Soispha
- **(hm/conf/neovim/options)** Separate 'listchars' option with commas - (7b93175) - Soispha
- **(hm/conf/neovim/options)** Turn wildmode option into a string - (757ed44) - Soispha
- **(hm/conf/neovim/plugins)** Import new ones - (3eef38d) - Soispha
- **(hm/conf/neovim/plugins)** Move raw plugins to their config dirs - (1293b75) - Soispha
- **(hm/conf/neovim/plugins)** Import added plugins - (1d3250c) - Soispha
- **(hm/conf/neovim/plugins/colorscheme)** Mk todo,fix,&c comments visible - (dc5a6ff) - Soispha
- **(hm/conf/neovim/plugins/harpoon/mappings)** Simplify mappings - (bc0ea9c) - Soispha
- **(hm/conf/neovim/plugins/lf)** Add fg and bg highlight colors - (6600922) - Soispha
- **(hm/conf/neovim/plugins/lf)** Prepend 'vim' to global 'o' usage - (2fca0d7) - Soispha
- **(hm/conf/neovim/plugins/lsp)** Remove duplicated setup of capabilities - (63a42e7) - Soispha
- **(hm/conf/neovim/plugins/lsp-progress)** Disable as its quite distracting - (ddafa64) - Soispha
- **(hm/conf/neovim/plugins/lsp/keymaps)** Use correct mapping options - (0f87b80) - Soispha
- **(hm/conf/neovim/plugins/lualine)** Correctly qoute string - (f01e4a2) - Soispha
- **(hm/conf/neovim/plugins/lualine)** Use anynomys functions - (9f7da76) - Soispha
- **(hm/conf/neovim/plugins/lualine)** Enable - (bc19a3f) - Soispha
- **(hm/conf/neovim/plugins/luasnip)** Correct local value in snippet - (fe1679a) - Soispha
- **(hm/conf/neovim/plugins/telescope)** Init - (bc19814) - Soispha
- **(hm/conf/neovim/plugins/vimtex)** Add comment about treesitter support - (0148cd1) - Soispha
- **(hm/conf/neovim/plugs/lsp/ltex)** Disable autocompletion while typing - (e866be8) - Soispha
- **(hm/conf/nvim)** Import neovim config - (bbe6775) - Soispha
- **(hm/conf/nvim/mappings)** Add missing "change without register" map - (328946f) - Soispha
- **(hm/conf/nvim/mappings)** Switch the confirm map from `cc` to `uu` - (b625cac) - Soispha
- **(hm/conf/nvim/options)** Set `textwidth` to 90, as 120 is just too much - (2d54019) - Soispha
- **(hm/conf/nvim/plugins/colorscheme)** Switch back to carbonfox - (f7fe71a) - Soispha
- **(hm/conf/nvim/plugins/femaco)** Import `clip_val` local - (5e6188f) - Soispha
- **(hm/conf/nvim/plugins/femaco)** Switch to extra, as that's newer - (0eb5edb) - Soispha
- **(hm/conf/nvim/plugins/femaco)** Actually bind key to function - (d89d775) - Soispha
- **(hm/conf/nvim/plugins/luasnip/snippets/all)** Fix pairs in certain fts - (c890474) - Soispha
- **(hm/conf/nvim/plugins/neorg)** Add telescope integration - (578e2f8) - Soispha
- **(hm/conf/nvim/plugins/neorg)** Move dirman workspaces to `~/repos` - (28eae1c) - Soispha
- **(hm/conf/nvim/plugins/neorg)** Disable calendar until nvim >= 0.10 - (f4b2248) - Soispha
- **(hm/conf/nvim/plugins/neorg)** Add entry to modules, to generate them - (310e406) - Soispha
- **(hm/conf/nvim/plugins/telescope/symbols)** Switch to nixpkgs one - (2b7d47d) - Soispha
- **(hm/conf/nvim/plugins/todo-comments)** Add default highlighting - (71a8ee4) - Soispha
- **(hm/conf/ssh)** Only connect to codeberg.org over ipv4 (ipv6 failed) - (22a25f6) - Soispha
- **(hm/conf/ssh)** Typo in known_host path - (388c694) - Soispha
- **(hm/conf/tridactly)** Use midnight colorscheme - (ee4abb5) - Soispha
- **(hm/conf/yambar)** Increase battery poll interval to 300ms - (b13d9f5) - Soispha
- **(hm/impermanence)** Save the date dir of iamb - (e614699) - Soispha
- **(hm/packages)** Remove neovim as it's already added by nixvim - (676cabd) - Soispha
- **(hm/packages)** Add iamb and remove nheko - (f11850d) - Soispha
- **(hm/pkgs)** Add notify-send, as alacritty needs it - (266679a) - Soispha
- **(hm/pkgs/update-sys)** Add git-crypt dependency - (d86ea7e) - Soispha
- **(hm/wms/river)** Reactivate gammastep - (f98bb06) - Soispha
- **(hm/wms/river)** Disable gammastep - (d9ed534) - Soispha
- **(hm/wms/river)** Always use the us version of dvorak - (e66974e) - Soispha
- **(hm/wms/river)** Misuse Steam mapping for signal-desktop - (747c310) - Soispha
- **(hm/wms/river)** Switch back to nheko - (59a07b8) - Soispha
- **(hm/wms/river)** Remove mpd path from mapping, as it's set per env var - (041cbb5) - Soispha
- **(hm/wms/river)** Also map element-desktop to hotkey - (a202bce) - Soispha
- **(hosts/apzu)** Add information about swapfile - (efca2a7) - Soispha
- **(hosts/apzu)** Update disk to new disko install - (8462082) - Soispha
- **(hosts/isimud)** Fully provide all dependencies - (c2a96eb) - Soispha
- **(hosts/isimud)** Add `onlykey` and `onlykey-agent` to the system - (83633a6) - Soispha
- **(hosts/isimud)** Import the whole system configuration - (2e46123) - Soispha
- **(hosts/tiamat)** Update to new swapfile uuid - (ae162ed) - Soispha
- **(hosts/tiamat)** Update to new disk - (f4f2450) - Soispha
- **(secrets)** Rekey to accommodate new apzu key - (edd1af8) - Soispha
- **(secrets/nheko/apzu)** Update for new home server - (6873ca3) - Soispha
- **(secrets/nheko/apzu)** Use correct config - (b27a15c) - Soispha
- **(secrets/nheko/conf.tiamat)** Move to new homeserver - (247935c) - Soispha
- **(sys/font)** Add multiple changes - (727de34) - Soispha
- **(sys/font)** Use the default terminal font, as it's best suited - (56a1a68) - Soispha
- **(sys/font)** Correct the font names - (093a719) - Soispha
- **(sys/font)** Add default fonts with nerd fonts support - (595fff4) - Soispha
- **(sys/font/font.local)** Remove comment, as it's not accepted in the - (e19fb33) - Soispha
- **(sys/srvs/getty)** Remove autologin, as it actually logs the user in - (63bb142) - Soispha
- **(system/disks)** Increase default tempfs size to accommodate big builds - (fdec455) - Soispha
- **(system/disks)** Typo in snapshots - (3cd0c56) - Soispha
- **(system/disks)** Add remainder about bootable option - (5574289) - Soispha
- **(system/disks)** Make ESP bootable - (f8e7e54) - Soispha
- **(system/disks)** Add .snapshot subvol for snapper - (a218c5e) - Soispha
- **(system/disks)** Add disk labels - (5b4406e) - Soispha
- **(system/disks)** Use correct option name - (59f4cfe) - Soispha
- **(system/disks/hibernate)** Hibernate after 5m when suspend -> hibernate - (51726ee) - Soispha
- **(system/disks/hibernate)** Try to activate it - (22333b9) - Soispha
- **(system/disks/hibernation)** Circumvent memory checks - (616bb04) - Soispha
- **(system/font)** Rename `fonts.fonts` to `fonts.packages` - (c1920b1) - Soispha
- **(system/secrets/nheko)** Config token fix for new account - (adb3e01) - Soispha
- **(system/services/backup)** Run backup every 8h, not only on boot - (852ee02) - Soispha
- **(system/services/openssh)** Don't hash know hosts - (ae92ed5) - Soispha
- **(system/services/postgresql)** Disable as it's no longer needed - (c7b2783) - Soispha
- **(system/services/serverphone)** Disable bc building the gpg keys dosn't work - (515effc) - Soispha
- **(system/services/serverphone)** Update key symlink - (2c07fd3) - Soispha
- **(system/services/steam)** Install wine with steam - (07dc1e9) - Soispha
- **(treewide)** Replace old nerdfont icons with new ones - (581228d) - Soispha
- **(treewide)** Use tlp and thermald for power saving - (ca0ca5e) - Soispha
- **(treewide)** Add `git-crypt` - (ae848c7) - Soispha
- Temporarily disable lanzaboot to set tempfs size - (64dfa6c) - Soispha
#### Build system
- **(flake)** Update - (bae1f58) - Soispha
- **(flake)** Update - (410eb8d) - Soispha
- **(flake)** Update - (deb8151) - Soispha
- **(flake)** Update - (f6fb97a) - Soispha
- **(flake)** Update - (760e8c3) - Soispha
- **(flake)** Update - (a11afd0) - Soispha
- **(flake)** Update - (e60edeb) - Soispha
- **(flake)** Normalize nixpkgs stable name - (0e42baf) - Soispha
- **(flake)** Update - (90b6f17) - Soispha
- **(flake)** Update - (ba9402d) - Soispha
- **(flake)** Switch to stable lanzaboote to sidestep building llvm/rustc - (1566fcf) - Soispha
- **(flake)** Update - (17491e6) - Soispha
- **(flake)** Update - (8228399) - Soispha
- **(treewide)** Update - (a93e522) - Soispha
- **(treewide)** Update - (7c22931) - Soispha
- **(treewide)** Update - (feb9db9) - Soispha
- **(treewide)** Update - (1224925) - Soispha
- **(update.sh)** Use correct path to update script - (4e425ab) - Soispha
#### Documentation
- **(hm/conf/lf/commads/trash)** Add fixme about the implementation - (c7c1a63) - Soispha
- **(hm/packages)** Improve comments - (697e1e4) - Soispha
- **(system/disks)** Remove checked TODO comments - (411eb38) - Soispha
- **(todo)** Update - (85bb6b1) - Soispha
- **(todo)** Update - (db12b72) - Soispha
- **(todo)** Add link to work/live separation - (3f82086) - Soispha
- **(treewide)** Add a colon after "FIXME"s - (8249833) - Soispha
- **(treewide)** Add a colon after every "TODO" - (a01a3d4) - Soispha
#### Features
- **(.editorconfig)** Add lua config - (65b9e40) - Soispha
- **(.gitattributes)** Add git-crypt encrypted file - (0699ff3) - Soispha
- **(disko)** Squash Commit - (5eb25c3) - Soispha
- **(flake)** Provide the neovim config as a package - (dcc9461) - Soispha
- **(flake)** Import the nixNeovim module - (1194d84) - Soispha
- **(flake)** Add gpg-iso package output - (54eb3b5) - Soispha
- **(flake)** Add disko module - (9a78511) - Soispha
- **(flake/direnv)** Add git-bug - (14c86c8) - Soispha
- **(git-crypt)** Add Soispha as contributor - (467f69e) - Soispha
- **(hm/conf/alacritty)** Set nightfox/carbonfox as colorscheme - (f7b7d43) - Soispha
- **(hm/conf/alacritty)** Add support for git hashes in hints - (67f69cd) - Soispha
- **(hm/conf/firefox)** Add a `clean` profile, without confi - (511a523) - Soispha
- **(hm/conf/firefox)** Add a nixpkgs issue search - (01eb61d) - Soispha
- **(hm/conf/firefox)** Add tridactly native messanger - (4d8e617) - Soispha
- **(hm/conf/git)** Mark moved code in diffs and delta for merge conflicts - (0cd7b63) - Soispha
- **(hm/conf/iamb)** Init - (02e6319) - Soispha
- **(hm/conf/lf)** Add command to go to flake base dir - (bd9d18e) - Soispha
- **(hm/conf/lf)** Replace rename script by rename c binary - (6909986) - Soispha
- **(hm/conf/lf/keybindings)** Add mapping to load Session.vim file - (ab1e59a) - Soispha
- **(hm/conf/mail)** Add non-public mail accounts - (04070cc) - Soispha
- **(hm/conf/mumble)** Add - (1aae57b) - Soispha
- **(hm/conf/neovim)** Use non-treesitter theme for latex files - (f4cbcd6) - Soispha
- **(hm/conf/neovim/autocmds)** Highlight yanked text - (916f6fc) - Soispha
- **(hm/conf/neovim/plugins/femaco)** Init - (79c9e42) - Soispha
- **(hm/conf/neovim/plugins/goto-preview)** Init - (fc10340) - Soispha
- **(hm/conf/neovim/plugins/harpoon)** Init - (d7d940e) - Soispha
- **(hm/conf/neovim/plugins/leap)** Init - (1f198c4) - Soispha
- **(hm/conf/neovim/plugins/lsp-progress)** Init - (1204365) - Soispha
- **(hm/conf/neovim/plugins/lsp/ccls)** Init - (01425a1) - Soispha
- **(hm/conf/neovim/plugins/lspkind)** Init - (bcc505e) - Soispha
- **(hm/conf/neovim/plugins/telescope/extensions/bibtex)** Init - (59fb1e0) - Soispha
- **(hm/conf/neovim/plugins/telescope/extensions/rooter)** Init - (911a0f1) - Soispha
- **(hm/conf/neovim/plugins/telescope/extensions/symbols)** Init - (8a6c60c) - Soispha
- **(hm/conf/neovim/plugins/todo-comments)** Init - (d22d6dc) - Soispha
- **(hm/conf/neovim/plugins/which-key)** Init - (0ad6ed5) - Soispha
- **(hm/conf/nvim)** Add basic nix config [REBASE TARGET] - (be1cc38) - Soispha
- **(hm/conf/nvim/autocmds)** Add mkdir autocmd - (d341d4d) - Soispha
- **(hm/conf/nvim/mappings)** Add mapping to go to file (<enter>) - (af39c05) - Soispha
- **(hm/conf/nvim/maps)** Add keymaps for tab movement - (c55ee1a) - Soispha
- **(hm/conf/nvim/plgs/debugprint)** Init - (d1fd7ce) - Soispha
- **(hm/conf/nvim/plgs/flatten-nvim)** Init - (e03b085) - Soispha
- **(hm/conf/nvim/plgs/ltex_extra)** Init - (93bbd9c) - Soispha
- **(hm/conf/nvim/plugins/comment-nvim)** Init - (94c6dfe) - Soispha
- **(hm/conf/nvim/plugins/luasnip/all)** Add snippets for todo comments - (3bbd206) - Soispha
- **(hm/conf/nvim/plugins/luasnip/snippets/all)** Add snips for todo-comments - (8bc95c0) - Soispha
- **(hm/conf/nvim/plugins/neorg)** Init - (df580aa) - Soispha
- **(hm/conf/tridactly)** Add configuration - (039d1eb) - Soispha
- **(hm/conf/xdg)** Set up userDirs - (4c9eaea) - Soispha
- **(host/isimud)** Add host isimud for gpg-iso - (12f072b) - Soispha
- **(hosts/apzu)** Enable bluetooth - (f4c17ab) - Soispha
- **(hosts/tiamat)** Enable bluetooth - (8083db3) - Soispha
- **(packages)** Add element-desktop - (b3ddffd) - Soispha
- **(packages)** Add signal desktop - (078c8e8) - Soispha
- **(services/fwupd)** Add - (3ad473e) - Soispha
- **(sys/documentation)** Init - (a40d083) - Soispha
- **(sys/svcs/getty)** Init - (6f925a5) - Soispha
- **(system/boot)** Enable lanzaboote (and with it secure boot) - (59bc285) - Soispha
- **(system/disks)** Add luks partition - (4ca4e45) - Soispha
- **(system/services/postgresql)** Init - (8eb9404) - Soispha
- **(treewide)** Import nixVim - (f4dcf65) - Soispha
- **(treewide)** Add enable options for secrets and impermanence - (3f5e7b9) - Soispha
#### Miscellaneous Chores
- **(hm/conf/lf/commads)** Add initial draft of a reflinking cp in lf - (6a77c31) - Soispha
#### Performance Improvements
- **(flake/packages/nvim)** Use list merge feature of the merge function - (be1f02c) - Soispha
#### Refactoring
- **(bootstrap)** Use disko - (c3d2c88) - Soispha
- **(hm/conf/alacritty)** Split the configuration in separate files - (6e439e3) - Soispha
- **(hm/conf/neovim/plugins/luasnip/snippets)** Remove unnused ones - (b6aac33) - Soispha
- **(hm/conf/nvim/plugins)** Rename to `plgs` to safe commit msg space - (3925f6e) - Soispha
- **(hm/conf/zsh)** Use new syntaxHighlight option - (e7a6107) - Soispha
- **(treewide)** Abbreviate path names - (3f600ab) - Soispha
- **(treewide)** Move module configuration in separate files - (0a608bd) - Soispha
#### Revert
- "Fix(hm/conf/alacritty/color): Don't import this" - (5a52e70) - Soispha
- "Fix(hm/conf/lf): Update icons to nerdfonts v3" - (d607d17) - Soispha
- "Fix: Temporarily disable lanzaboot to set tempfs size" - (dd70869) - Soispha
#### Style
- **(hm/conf/neovim)** Format - (3d37c38) - Soispha
- **(system/impermanece)** Remove unused arguments - (ed9c2f9) - Soispha
- **(treewide)** Format all lua-files makes lua ➛ nix easier - (4c743a2) - Soispha
- **(treewide)** Remove some unused imports - (92a9e22) - Soispha
- **(treewide)** Switch to editorconfig - (3262a78) - Soispha
- - -
## v1.8.3 - 2023-06-25
#### Bug Fixes
- **(hm/conf/git)** Add info about gpg sigs to git log - (9efd974) - Soispha
- **(hm/conf/gpg)** Disable agent as it does not work - (63fccc6) - Soispha
- **(hm/conf/neomutt)** Remap l to something usefull - (e15d12a) - Soispha
- **(hm/conf/neomutt)** Remove duplicate bindings - (b5c03ad) - Soispha
- **(system/libvirtd)** Allow usb redirection with spice - (9a24cce) - Soispha
- **(system/services/nix)** Use nixStable as unstable is broken right now - (669f7b4) - Soispha
- **(system/services/serverphone)** Add home dir - (705f6f6) - Soispha
#### Build system
- **(flake)** Update - (354f8bf) - Soispha
- **(flake)** Update - (4ea8f77) - Soispha
- **(flake)** Update - (ab576ba) - Soispha
- **(flake)** Update - (98c017d) - Soispha
- **(flake)** Update - (71f0671) - Soispha
- - -
## v1.8.2 - 2023-06-16
#### Bug Fixes
- **(hm/conf/gpg)** Enable pinentry - (02635f7) - Soispha
- **(hm/conf/gpg/agent)** Reduce verbosity - (a014d9c) - Soispha
- **(hm/conf/neomutt)** Use vim-like keybindings - (032875e) - Soispha
- **(system/services/serverphone)** Explicitly enable Doas - (7009476) - Soispha
- **(system/services/serverphone)** Correct line breaks - (de85606) - Soispha
- **(system/services/serverphone)** Assure that all paths are available - (d0d1e2e) - Soispha
- **(system/services/serverphone)** Make symlink relative - (e68305e) - Soispha
#### Build system
- **(flake)** Update - (b743f40) - Soispha
- **(treewide)** Update - (ec0a3df) - Soispha
- - -
## v1.8.1 - 2023-06-06
#### Bug Fixes
- **(secrets)** Rename to find file - (fc9652b) - Soispha
- - -
## v1.8.0 - 2023-06-06
#### Bug Fixes
- **(flake)** Return to unstable - (ea9d360) - Soispha
- **(hm/conf/swaylock)** Switch to different wp - (3e1d6d9) - Soispha
- **(system/services/serverphone)** Fully add - (3f7852d) - Soispha
- **(treewide)** Update the shell library version - (39229a1) - Soispha
#### Build system
- **(flake)** Update - (926f0e4) - Soispha
#### Features
- **(hm/conf/firefox/bookmarks)** Add nix lib and nixpkgs man - (13e1056) - Soispha
- **(system/services/serverphone)** Add - (a2a5ee2) - Soispha
#### Miscellaneous Chores
- **(version)** v1.7.1 - (d9796a0) - Soispha
#### Refactoring
- **(secrets/nheko)** Separate in directory - (f228c79) - Soispha
- - -
## v1.7.1 - 2023-05-29
#### Bug Fixes
- **(treewide)** Update the shell library version - (f463519) - Soispha
- - -
## v1.7.0 - 2023-05-29
#### Bug Fixes
- **(hm/conf/lf/keybinds)** Update - (f94e50a) - Soispha
- **(hm/conf/zsh)** Quote string - (d4ff072) - Soispha
- **(hm/conf/zsh)** Also add a version for the shell library - (180f86c) - Soispha
- **(hm/pkgs/scrs/ll)** Don't use the tempdir provided by lib - (9cc1b8c) - Soispha
#### Build system
- **(flake)** Update - (ce9a7aa) - Soispha
#### Features
- **(hm/conf/lf/cmds)** Add a way to create temp scripts - (7d320b8) - Soispha
#### Style
- **(hm/conf/zsh)** Indent comment - (95e7be9) - Soispha
- - -
## v1.6.0 - 2023-05-28
#### Bug Fixes
- **(bootstrap)** Quote scripts - (1f79cb3) - Soispha
- **(flake)** Add 'flake_version_update' for following - (6ac6e61) - Soispha
- **(hm/conf/lf/cmds)** Rework some of them - (e5af81a) - Soispha
- **(hm/conf/lf/cmds/mk_scr)** Use the official shell library template - (1e4fb00) - Soispha
- **(hm/conf/yambar/scripts)** Quote scripts - (cb33626) - Soispha
- **(hm/pkgs/scrs)** Rework some of them - (df2e590) - Soispha
- **(treewide)** Update to new shell library version - (12665e7) - Soispha
#### Build system
- **(cog)** Remove useless echo - (ed45d41) - Soispha
- **(flake)** Update - (44a02de) - Soispha
- **(flake)** Update - (2727782) - Soispha
#### Documentation
- **(hm/wms/river/init)** Add a hint to simplify script - (99f9b6f) - Soispha
#### Features
- **(hm/pkgs/scrs/update-sys)** Add a way to specify to mode - (96d2ce9) - Soispha
- - -
## v1.5.2 - 2023-05-27
#### Bug Fixes
- **(flake)** Switch to Soisphas templates - (936a2b8) - Soispha
- **(hm/conf/firefox/prefs)** Readd the download dir setting - (df64a1d) - Soispha
- **(hosts/marduk)** Use compatible kernel for zfs - (b634108) - Soispha
#### Build system
- **(flake)** Update - (4b32094) - Soispha
- **(update.sh)** Make script somewhat more path indifferent - (f513441) - Soispha
- - -
## v1.5.1 - 2023-05-26
#### Bug Fixes
- **(flake)** Stay on 23.05 until all dependencies have been updated - (8428847) - Soispha
- **(hm/conf/firefox/bookmarks)** Remove url garbage in DeepL - (fc9cd23) - Soispha
- **(hm/conf/firefox/prefs)** Open new tabs next to the current one - (d595360) - Soispha
- **(hm/conf/firefox/prefs)** Disable auto scroll - (0945701) - Soispha
- **(host/marduk)** Override the iso name, to avoid a merge conflict - (b33a863) - Soispha
#### Build system
- **(treewide)** Update - (7b21a46) - Soispha
#### Documentation
- **(todo)** Update - (94efa18) - Soispha
#### Refactoring
- **(hm/conf/firefox/prefs)** Add only the dynamic ones in nix - (16d8862) - Soispha
- - -
## v1.5.0 - 2023-05-21
#### Bug Fixes
- **(hm/conf/cups)** Delete cups folder, as it's useless - (75cb791) - Soispha
- **(hm/conf/gpg/keys)** Add soispha@vhack.eu - (b4dabf8) - Soispha
- **(hm/pkgs/scr/con2pdf)** Don't try batch mode when using the Flatbed - (6aea234) - Soispha
- **(hm/pkgs/scr/con2pdf)** Add status output - (b8b3014) - Soispha
- **(hm/pkgs/scr/con2pdf)** Remove useless awk call - (fb592f6) - Soispha
- **(hm/pkgs/scr/con2pdf)** Actually create output directory - (d590bc8) - Soispha
- **(hm/pkgs/scr/con2pdf)** Typo - (7e2393c) - Soispha
- **(hm/wms/river)** Remove accel from the moonlander pointer - (9bb00ad) - Soispha
- **(system)** Add configs for networkmanager only if it's enabled - (4d1a37c) - Soispha
- **(system/libvirt)** Remove omvf for aarch, as it's not used - (8e6d126) - Soispha
- **(system/users)** Remove plugdev group, as it's deprecated - (3188a97) - Soispha
#### Build system
- **(flake)** Update - (52d2b73) - Soispha
- **(flake)** Update - (c75c2cb) - Soispha
- **(flake)** Update deps - (443a925) - Soispha
- **(fupdate)** Add generate_extensions to the inputs to avoid gc - (725047d) - Soispha
#### Features
- **(hm/conf/gpg)** Add gpg key of sils@sils.li - (9d9e942) - Soispha
#### Refactoring
- **(system/services/printing)** Split printing and scanning - (c025d9c) - Soispha
- **(system/users)** Add the groups in the file, giving context - (c84419c) - Soispha
#### Style
- **(treewide)** Format - (3ae3782) - Soispha
- - -
## v1.4.0 - 2023-05-18
#### Bug Fixes
- **(hm/conf/gpg)** Use nixos to write the agent script - (00afa44) - Soispha
- **(hm/pkgs/scr/con2pdf)** Rewrite to update to nix - (4bab53c) - Soispha
- **(system)** Truly disable all the NixOS default bloat - (7997ee7) - Soispha
- **(system/boot)** Remove deprecated version option - (3b6233a) - Soispha
- **(system/services/printing)** Remove useless drivers - (7f071da) - Soispha
- **(system/services/printing)** Only start cups as needed - (37dcd30) - Soispha
- **(system/services/snapper)** Use new option layout - (3052bd6) - Soispha
- **(sytem/services/printing)** Make scanners work - (562e3c6) - Soispha
#### Build system
- **(flake)** Update - (a1d4200) - Soispha
- **(flake)** Update - (719d9b9) - Soispha
#### Documentation
- **(system/users)** Remove unneeded comment - (5786bf0) - Soispha
#### Features
- **(hm/conf/gpg)** Enforce key entry through nixos config - (fa9a810) - Soispha
#### Miscellaneous Chores
- **(version)** v1.3.0 - (cb4c41d) - Soispha
- - -
## v1.3.0 - 2023-05-17
#### Bug Fixes
- **(hm/conf/gpg)** Use nixos to write the agent script - (8ad4d4b) - Soispha
- **(system)** Truly disable all the nixos default bloat - (c034509) - Soispha
- **(system/boot)** Remove deprecated option - (b7000a2) - Soispha
- **(system/services/printing)** Remove useless drivers - (57b7962) - Soispha
- **(system/services/printing)** Only start cups as needed - (01941c4) - Soispha
- **(system/services/snapper)** Use new option layout - (b952dd1) - Soispha
- **(sytem/services/printing)** Make scanners work - (874e187) - Soispha
#### Build system
- **(flake)** Update - (d389a40) - Soispha
#### Documentation
- **(system/users)** Remove unneeded comment - (27340fd) - Soispha
#### Features
- **(hm/conf/gpg)** Enforce key entry through nixos config - (0a2afc6) - Soispha
- - -
## v1.2.0 - 2023-05-16
#### Bug Fixes
- **(hm/conf/swaylock)** Use correct mapping from path to string - (df4b667) - Soispha
- **(hm/pkgs)** Remove unused ones - (340566f) - Soispha
- **(hosts/tiamat)** Remove outdated network config - (a2fa552) - Soispha
- **(system/network)** Use correct names for group and user - (fb98f1b) - Soispha
- **(system/network)** Set networks for netdev devices - (6f12ec1) - Soispha
#### Build system
- **(flake)** Update - (d7ad150) - Soispha
- **(flake)** Update deps - (e8648b5) - Soispha
#### Documentation
- **(todo)** Update - (b170278) - Soispha
#### Features
- **(system/network)** Add a tap device and bridges - (ec02b31) - Soispha
- - -
## v1.1.1 - 2023-05-13
#### Bug Fixes
- **(hm/conf/lf)** Add missing elements in Path to /run dir - (069a93c) - Soispha
- - -
## v1.1.0 - 2023-05-13
#### Bug Fixes
- **(hm/conf/zsh)** Readd the default qemu address - (e246847) - Soispha
#### Build system
- **(flake)** Update - (0901fc2) - Soispha
#### Features
- **(hm/conf/git)** Add further aliases - (3d5f2c2) - Soispha
- **(hm/conf/git)** Reword git commit template - (b504cf8) - Soispha
#### Refactoring
- **(hm/conf/git)** Remove useless variable assignment - (edd7085) - Soispha
- - -
Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).
|