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
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
|
# Changelog
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
- - -
## v1.38.0 - 2024-05-25
#### Bug Fixes
- **(.gitattributes)** Remove unneeded paths - (8520aad) - Soispha
- **(flake)** Correctly export the overlayed package set as `legacyPackages` - (feb8581) - Soispha
- **(flake)** Import my modules stuck in nixpkgs prs directly - (bc388c1) - Soispha
- **(flake)** Use new vendored `generate_firefox_extensions` binary - (9cbf708) - Soispha
- **(flake/nixosConfigurations)** Adapt to new module structure - (a6af2ad) - Benedikt Peetz
- **(flake/packages)** Adapt the exposed `nvim` to the `pkgs` set changes - (40e58f6) - Benedikt Peetz
- **(git/aliases)** Add missing config attrs - (50b7c4d) - Benedikt Peetz
- **(hm/conf/firefox/conf/search)** Update home-manager options search url - (904c63d) - Benedikt Peetz
- **(hm/conf/firefox/conf/search)** Change nixos wiki to new domain - (b9885d3) - Benedikt Peetz
- **(hm/conf/firefox/extensions)** Remove torproject-snowflake temporarily - (8974745) - Soispha
- **(hm/conf/firefox/scripts/generate_extensions)** Re-activate snowflake - (46b5cb7) - Benedikt Peetz
- **(hm/conf/git)** Update the default key to my new gpg key - (fe35300) - Benedikt Peetz
- **(hm/conf/gpg)** Set correct gpg home variable - (3c2f28f) - Benedikt Peetz
- **(hm/conf/gpg)** Allow mutable keys and thus remove old keys - (e8aca66) - Benedikt Peetz
- **(hm/conf/gpg)** Remove `onlykey` specific configuration - (efe1a35) - Benedikt Peetz
- **(hm/conf/gpg)** Add my nixpkgs fork to ensure a working gpg-agent - (9ce56f0) - Soispha
- **(hm/conf/lf)** Correctly implement symlink following - (f842133) - Benedikt Peetz
- **(hm/conf/lf/icons)** Also use the key icon for `COPYING` - (6cfc665) - Benedikt Peetz
- **(hm/conf/lf/keybindings)** Use the autogenerate cd mappings - (55c530a) - Benedikt Peetz
- **(hm/conf/nvim/plgs/debugprint)** Remove - (ed76902) - Benedikt Peetz
- **(hm/conf/nvim/plgs/lsp/servers/ltex)** Don't use in html files - (1ca13d0) - Benedikt Peetz
- **(hm/conf/nvim/plgs/vim-tex)** Set `outdir` on latex command - (cc2e8ef) - Soispha
- **(hm/conf/python)** Create history file, if it does not exist - (746ae8c) - Benedikt Peetz
- **(hm/conf/python)** Correctly tell python to use a history file - (d2b0cee) - Benedikt Peetz
- **(hm/conf/unison)** Remove auto merge feature - (41e1bf2) - Soispha
- **(hm/conf/yambar/scripts/mpd)** Put a separator between title and time - (016b2b7) - Soispha
- **(hm/wms/river/init)** Restore the pre 3.0 forced ssd - (2d36139) - Benedikt Peetz
- **(hosts/tiamat)** Also use new services modules - (a842acd) - Benedikt Peetz
- **(hosts/tiamat/hardware)** Avoid having a suspended Bluetooth controller - (7a24bd6) - Benedikt Peetz
- **(modules/home)** Use the canonical package name from `by-name` - (047d2bc) - Benedikt Peetz
- **(modules/home/conf/gpg/keys/key_1)** Add key fingerprint - (d8d92aa) - Benedikt Peetz
- **(modules/home/pkgs/brightness)** Only include on laptops - (f2fa065) - Benedikt Peetz
- **(modules/services/nix)** Add my overlayed `nixpkgs` to the flake - (2dfef51) - Benedikt Peetz
- **(modules/system)** Actually import the `home-manager` module - (5a13b10) - Benedikt Peetz
- **(modules/system)** Re-add the laptop settings for home-manager comp - (6b543fb) - Benedikt Peetz
- **(modules/system/cleanup)** Remove unneeded `nano` dependency - (0796ed4) - Benedikt Peetz
- **(modules/system/documentation)** Avoid including all modules - (0cc7c1d) - Benedikt Peetz
- **(modules/system/home-manager)** Import soispha's hm config - (625ed3a) - Benedikt Peetz
- **(modules/system/networking)** Enforce mutually exclusivity between networkd and NetworkManager - (4b28aa4) - Benedikt Peetz
- **(modules/system/nixpkgs)** Remove duplicated `config` attr name - (3f9e7bb) - Benedikt Peetz
- **(modules/system/services{adb,backup})** Add `services` to option path - (6a6229b) - Benedikt Peetz
- **(modules/system/{hardware,fonts})** Fix typesystem stuff - (7489788) - Benedikt Peetz
- **(modules/system/{tempfiles,services/steam})** Fix typos - (2e88237) - Benedikt Peetz
- **(pkgs)** Remove unneeded copied files - (01e862f) - Benedikt Peetz
- **(pkgs/by-name/na/neorg)** Adapt values to the `by-name` change - (38a081a) - Benedikt Peetz
- **(pkgs/by-name/ya/yambar-{memory,cpu})** Add devshell - (5e9c03d) - Benedikt Peetz
- **(pkgs/by-name/{tr,ya})** Move away from `crane.lib.${system}` - (ff6b516) - Benedikt Peetz
- **(pkgs/scripts/aumo)** Add required dependencies (and remove old ones) - (06c4ea7) - Soispha
- **(pkgs/scripts/fupdate)** Ignore args after `--` - (f924002) - Soispha
- **(pkgs/scripts/fupdate)** Avoid polluting the arguments of the update script - (f69de99) - Soispha
- **(pkgs/scripts/fupdate)** Avoid inversion in check for --no-script - (17c6a92) - Soispha
- **(pkgs/scripts/neorg/review)** Use dataHome to store data - (ac340c1) - Soispha
- **(pkgs/scripts/update-sys)** Add new `systemd-run` dependency - (bb4ede2) - Soispha
- **(pkgs/update.sh)** Ensure that the `nix flake update` check works - (67cb8aa) - Benedikt Peetz
- **(pkgs/update.sh)** Update to the new `by-name` convention - (16ed377) - Benedikt Peetz
- **(sys/boot)** Restore the bootsetup to the status quo - (7ff60a4) - Benedikt Peetz
- **(sys/boot)** Always update the config-file - (1681647) - Benedikt Peetz
- **(sys/boot)** Include a parameter for the device the iso is stored on - (21c1c29) - Benedikt Peetz
- **(sys/boot)** Use a disk backed directory to store the big iso - (1d4f3e7) - Benedikt Peetz
- **(sys/boot)** Also apply the `systemd-boot` settings, when lanzaboote is active - (b649d1d) - Benedikt Peetz
- **(sys/git_revision)** Use long git rev - (c8550da) - Soispha
- **(sys/hardware)** Enable the nitrokey udev rules - (600bb0b) - Benedikt Peetz
- **(sys/libvirt)** Disable, as tiamat can't build `ceph` - (e580ca9) - Benedikt Peetz
- **(sys/nixpkgs)** All the unfree 'pypemicro' - (159585e) - Benedikt Peetz
- **(sys/pkgs/comments)** Don't require `sponsorblock_chapters` - (c787885) - Benedikt Peetz
- **(sys/pkgs/yt)** Don't require an thumbnail url - (5c84fd1) - Benedikt Peetz
- **(sys/secrets)** Remove unused serverphone secrets - (4e72dea) - Benedikt Peetz
- **(sys/secrets/lf/cd_paths)** Regenerate - (d807b43) - Benedikt Peetz
- **(sys/sound)** Disable setting the default volume - (c2228a1) - Soispha
- **(sys/svcs/nix)** Use my overlayed nixpkgs in the `n` registry entry - (58f7723) - Benedikt Peetz
- **(sys/users/soispha)** Add my new ssh key - (3a0cf8f) - Benedikt Peetz
- **(treewide)** Remove nheko module and associated secrets - (394792e) - Benedikt Peetz
- **(treewide)** Use `nixVersions.latest` instead of just `nix` - (4007f50) - Benedikt Peetz
- **(treewide)** `Upgrade` the Cargo.toml file before `updating` the Cargo.lock - (477cbf3) - Benedikt Peetz
- **(treewide)** Update the shell library version - (b755ab3) - Soispha
- **(update.sh)** Ensure unique variables - (9bdd2fa) - Benedikt Peetz
- **(update.sh)** Use more descriptive names for the toplevel update.sh scripts - (d1f6e8f) - Benedikt Peetz
- **(yambar)** Correctly specify the `yambar-{cpu,memory}` binaries - (5ce5da9) - Benedikt Peetz
#### Build system
- **(flake)** Update - (eb8f97e) - Benedikt Peetz
- **(flake)** Update - (952608f) - Benedikt Peetz
- **(flake)** Deduplicate `treefmt-nix` input for `templates` - (b249b8e) - Benedikt Peetz
- **(flake)** Update - (1511e69) - Soispha
- **(flake)** Update - (cbd5e0d) - Soispha
- **(treewide)** Update - (f23e3fe) - Benedikt Peetz
- **(treewide)** Update - (9f61ad5) - Benedikt Peetz
- **(treewide)** Update - (acb2fbb) - Benedikt Peetz
- **(treewide)** Update - (7e4f747) - Benedikt Peetz
- **(treewide)** Update flake.lock files - (97eb43a) - Benedikt Peetz
- **(treewide)** Update - (5b68e0f) - Soispha
- **(treewide)** Update - (028932f) - Soispha
#### Documentation
- **(notes/git_crypt)** Add information on how to remove `git-crypt` - (678c6ca) - Benedikt Peetz
- **(pkgs)** Add TODO regarding the lack of source filtering - (a9e3a8b) - Benedikt Peetz
- **(pkgs/scripts/fupdate)** Add somewhat better documentation - (3796fe8) - Soispha
#### Features
- **(hm/conf/firefox/conf/search)** Add a direct nixos github pr search - (de95ee6) - Benedikt Peetz
- **(hm/conf/gpg)** Use my gpg key as an ssh key - (02d3a05) - Benedikt Peetz
- **(hm/conf/gpg/keys)** Add my new gpg key - (c5dd5df) - Benedikt Peetz
- **(hm/conf/lf/cmd/make_link)** Always make relative links - (8396b01) - Soispha
- **(hm/conf/lf/keybindings)** Add a keybind to follow symnlinks - (8557090) - Benedikt Peetz
- **(hm/conf/nvim/plgs/lsp/servers)** Replace eslint by quick-lint-js - (6274293) - Benedikt Peetz
- **(hm/conf/nvim/plgs/lsp/servers/eslint)** Init - (346c0e9) - Benedikt Peetz
- **(hm/conf/prusa_slicer)** Init - (9281388) - Soispha
- **(hm/conf/yambar/mpd)** Add song progress and duration information - (e0da62d) - Soispha
- **(hosts/{tiamat,apzu}/hardware)** Don't always enable the bluetooth controller - (f611729) - Benedikt Peetz
- **(modules/system/issue_file)** Add the last modification date - (1405d29) - Benedikt Peetz
- **(pkgs)** Add a `git-cleanup` script - (c6e29c9) - Benedikt Peetz
- **(pkgs)** Pull yambar-{cpu,memory} in tree - (6364782) - Benedikt Peetz
- **(pkgs/generate_moz_extensions)** Vendor it - (8816ccb) - Soispha
- **(pkgs/lf-make-map)** Add de-serialization to lf mappings - (16c7608) - Benedikt Peetz
- **(pkgs/lf-make-map)** Support depths > 2 - (f46d845) - Benedikt Peetz
- **(pkgs/lf-make-map)** Ensure that it works (for a depth=1) - (13539f1) - Benedikt Peetz
- **(pkgs/lf-make-map)** Implement all needed details to produce first mappings - (5a27c1f) - Benedikt Peetz
- **(pkgs/lf-make-map)** Change the key to custom type and add visuals - (47e3b82) - Benedikt Peetz
- **(pkgs/lf-make-map)** Init - (023b7cd) - Benedikt Peetz
- **(pkgs/scripts/fupdate)** Generate completions - (dc2c35b) - Soispha
- **(pkgs/scripts/fupdate)** Add support for updating without running the script - (4b08138) - Soispha
- **(pkgs/scripts/neorg/review)** Only review opened projects - (d475107) - Soispha
- **(pkgs/scripts/spodi)** Rewrite to support artist `update` - (73cb8c5) - Soispha
- **(pkgs/update.sh)** Notify the user about the run update scripts - (1f3a4fb) - Benedikt Peetz
- **(sys/boot)** Provide the latest arch-iso as boot target - (e67d268) - Benedikt Peetz
- **(sys/pkgs/scripts/update-sys)** Enable completions - (200c103) - Benedikt Peetz
- **(sys/secrets/lf/cd_paths)** Generate with `lf-make-map` - (5fcdae1) - Benedikt Peetz
#### Miscellaneous Chores
- **(COPYING)** Finally add - (1d5e1d7) - Benedikt Peetz
- **(flake)** Deduplicate inputs with nixvim - (8aa5056) - Benedikt Peetz
- **(hm/conf/task/projects)** Update - (1b0b633) - Benedikt Peetz
- **(treewide)** Fully remove any last mentions of git-crypt - (19f7840) - Benedikt Peetz
- **(treewide)** Remove git crypt - (5d87640) - Benedikt Peetz
- **(treewide)** Conform to changed settings - (7b4ff39) - Benedikt Peetz
- **(treewide)** Move away from git-crypt - (815dfcc) - Soispha
#### Refactoring
- **(flake)** Update to new pkgs set - (42d0d64) - Benedikt Peetz
- **(flake)** Use an attrs for including open prs - (541a666) - Soispha
- **(flake/packages)** Export the new pkgs set - (5d2ab82) - Benedikt Peetz
- **(git)** Move aliases to their own file - (85af021) - Benedikt Peetz
- **(git/scripts)** Upgrade `git-cm` to a 'real' package - (6816c8e) - Benedikt Peetz
- **(hm)** Rename to `modules/home` - (5156e1a) - Benedikt Peetz
- **(hm/conf/nvim)** Use `opts` instead of `options` - (db59561) - Soispha
- **(hm/conf/nvim/plgs/comment-nvim)** Update to new module layout - (d9d00a3) - Soispha
- **(hm/conf/nvim/plgs/{nvim-cmp,vim-tex})** Update to new attr names - (499ef17) - Soispha
- **(hm/conf/zsh)** Remove old zsh-prompt file - (269b27d) - Benedikt Peetz
- **(hm/conf/zsh)** Move xdg vars under the xdg directory - (d1f0747) - Benedikt Peetz
- **(hm/wms/river/init)** Update to river 3.0 - (c9b81cd) - Benedikt Peetz
- **(hosts/apzu)** Use new modules - (64aa355) - Benedikt Peetz
- **(hosts/tiamat)** Adapt to the new modules for system - (bb00925) - Benedikt Peetz
- **(modules/home)** Setup as "normal" NixOS module - (fd9b0ec) - Benedikt Peetz
- **(modules/home/pkgs)** Readd whilst using the new `pkgs` - (c4a11ed) - Benedikt Peetz
- **(nixpkgs)** Configure nixpkgs via the module system - (96bf5aa) - Benedikt Peetz
- **(pkgs)** Categorize into `by-name` shards - (204731c) - Benedikt Peetz
- **(pkgs/by-name/vi/vim-plugins)** Give nixpkgs compatible name - (f07dd1d) - Benedikt Peetz
- **(sys)** Modularize and move to `modules/system` or `pkgs` - (368cb6b) - Benedikt Peetz
- **(sys/pkgs/comments)** Use better direnv api, instead of bare `.env` file - (8188a35) - Benedikt Peetz
- **(sys/pkgs/neorg/nu)** Delete the canceled try at a nu rewrite - (f237724) - Benedikt Peetz
- **(treewide)** Update to new modules names (and simplify some code) - (40bdcae) - Soispha
#### Style
- **(hm/wms/river/init)** Accept shfmt's format :( - (5d98c83) - Benedikt Peetz
- **(treewide)** Format - (7d3aaa9) - Benedikt Peetz
- **(treewide)** Reformat - (f0a8506) - Benedikt Peetz
- **(treewide)** Format - (1e1c9a9) - Benedikt Peetz
- **(treewide)** Comply with `nix fmt` - (d0ab646) - Benedikt Peetz
- **(treewide)** Format - (831a43a) - Soispha
- **(treewide)** Format - (8057372) - Soispha
- **(treewide)** Format - (03b4d21) - Soispha
- - -
## v1.37.0 - 2024-03-01
#### Bug Fixes
- **(pkgs/scripts/mpc-fav)** Update database after adding a new favorite - (d320e63) - Soispha
- **(sys/svcs/nix)** Finally remove the `nixPath` completely - (6bf0e14) - Soispha
#### Features
- **(pkgs/neorg/review)** Init - (a9ff740) - Soispha
- - -
## v1.36.2 - 2024-03-01
#### Bug Fixes
- **(hm/conf/unison)** Also try to merge 'log' files - (8e0d4b8) - Soispha
- **(hm/conf/unison)** Avoid merging, when the merge fails - (d2d0803) - Soispha
- **(hm/conf/unison)** Correctly use the `file_name` and `extisions` values - (cb0f583) - Soispha
- **(hm/conf/unison)** Add missing `diff` dependency for diffs - (9f33b43) - Soispha
- **(hm/conf/unison)** Add further files to auto merge - (0a55b67) - Soispha
- - -
## v1.36.1 - 2024-02-28
#### Bug Fixes
- **(hm/conf/lf/keymappings)** Unmap the later bound keys - (055fbaa) - Soispha
- - -
## v1.36.0 - 2024-02-28
#### Bug Fixes
- **(hm/conf/lf/keymappings)** Use 'k' for sort mappings - (4165445) - Soispha
- **(hm/conf/zsh)** Add a newline to the shell library import - (7f189ae) - Soispha
- **(hm/conf/zsh/command_not_found.sh)** Improve case 2 output - (48e468c) - Soispha
- **(hm/conf/zsh/command_not_found.sh)** Add missing space in cmd name - (c0e0dbe) - Soispha
- **(hm/conf/zsh/command_not_found.sh)** Output a status message for shell - (8681fca) - Soispha
- **(hm/conf/zsh/command_not_found.sh)** Correctly count found attrs - (3f0ccc2) - Soispha
- **(sys/svcs/nix)** Ensure that the nix path actually gets set - (e55f05c) - Soispha
#### Documentation
- **(todo)** Update - (694b2ec) - Soispha
#### Features
- **(hm/conf/lf/keymappings)** Set up search keymappings - (19c703f) - Soispha
- - -
## v1.35.0 - 2024-02-28
#### Bug Fixes
- **(hm/conf/unison)** Add `less`, as it's needed to display diffs - (8d7ab76) - Soispha
- **(hm/conf/unison)** Don't pass `links` argument along twice - (1080d8e) - Soispha
- **(hm/pkgs)** Put all my scripts in the `scripts` namespace - (8d5effa) - Soispha
- **(pkgs/scripts/fupdate)** Exit after running the main loop - (564a52f) - Soispha
#### Features
- **(hm)** Add nix-index and associated command_not_found_handler - (c733f33) - Soispha
- **(hm/conf/unison)** Support merging special paths - (8224aa5) - Soispha
- **(sys/svcs/nix)** Set nix path - (490eefd) - Soispha
#### Miscellaneous Chores
- **(hm/soispha/conf/taskwarrior/projects)** Update - (f99652d) - Soispha
#### Style
- **(sys/svcs/nix)** Inline the `nixpkgs` variable - (ead6456) - Soispha
- - -
## v1.34.0 - 2024-02-24
#### Bug Fixes
- **(hm/conf/lf/cmds)** Better manage files with pre-defined extensions - (49a1622) - Soispha
#### Features
- **(hm/conf/lf/keymappings)** Add sorting mappings - (54a7809) - Soispha
- **(hm/pkgs)** Add zathura to the pkgs list - (7ed43d2) - Soispha
- - -
## v1.33.2 - 2024-02-24
#### Bug Fixes
- **(hm/conf/unison)** Fix Typo in `EXTRA_OPTIONS` variable - (1a15fb0) - Soispha
- **(pkgs/scripts/aumo)** Add a warning on wrong usage - (f3615c9) - Soispha
- **(treewide)** Add shell library import directive - (a2e2ecf) - Soispha
- - -
## v1.33.1 - 2024-02-24
#### Bug Fixes
- **(sys/svcs/xdg/{lf,ranger}-wrapper)** Add a shell library import - (a3e5aff) - Soispha
#### Build system
- **(treewide)** Update shell library - (32d1ea6) - Soispha
- - -
## v1.33.0 - 2024-02-24
#### Bug Fixes
- **(hm/pkgs/fupdate)** Don't pass '--' to child command - (b0ac35f) - Soispha
- **(hm/pkgs/git-edit-index)** Correctly exit when parsing options - (4c818db) - Soispha
- **(hm/pkgs/git-update-index)** Remove '--' from help text - (dd05418) - Soispha
#### Build system
- **(flake)** Readd flake_version_update - (eb4fd30) - Soispha
- **(treewide)** Update - (28ce859) - Soispha
#### Features
- **(hm/pkgs/fupdate)** Allow passing arguments to the update script - (1dc750d) - Soispha
#### Refactoring
- **(hm/pkgs)** Implement with an nixpkgs overlay - (8284b6a) - Soispha
#### Style
- **(sys/nixpkgs/pkgs/scripts/fupdate)** Format - (5499dc1) - Soispha
- **(sys/nixpkgs/pkgs/scripts/git-edit-index)** Correct help text - (e34d390) - Soispha
- - -
## v1.32.0 - 2024-02-24
#### Bug Fixes
- **(hm/conf/lf/commands)** Correct reference to nix path - (18497ca) - Soispha
- **(hm/pkgs)** Readd man pages for `mpc-cli` - (eca0216) - Soispha
- **(hm/pkgs/scrs/git-edit-index)** Generate completions - (b7d8bb4) - Soispha
#### Build system
- **(flake)** Update - (11c0684) - Soispha
#### Features
- **(hm/pkgs)** Add `file` - (a76b280) - Soispha
- - -
## v1.31.0 - 2024-02-23
#### Bug Fixes
- **(hm/conf/lf/commands)** Check for the file name with the extension added - (2f1960b) - Soispha
- **(hm/conf/lf/commands)** Remove useless 'open_config' cmd - (55ed106) - Soispha
- **(hm/conf/lf/keymappings)** Correctly import dir_move file - (47d70f8) - Soispha
- **(hm/conf/lf/keymappings)** Separate and update moving key mappings - (a30b6fc) - Soispha
- **(hm/pkgs/specific/neorg)** Add missing '.sh' suffix - (1c1fde6) - Soispha
#### Build system
- **(flake)** Update - (b981a01) - Soispha
#### Features
- **(hm/conf/git)** Switch to zdiff3 instead of diff3 - (19b06fa) - Soispha
- **(hm/conf/lf)** Add a `execute` subcommand - (f14e173) - Soispha
- **(hm/conf/lf)** Start zathura on opening pdfs in lf - (3b2ee24) - Soispha
- **(hm/conf/lf/cmds/unarchive)** Add support for multiple files - (616ad5a) - Soispha
- **(hm/conf/unison)** Add support for link syncing - (4761669) - Soispha
- **(hm/pkgs/git-edit-index)** Init - (17d0ff7) - Soispha
- **(hm/pkgs/mpc)** Init - (c0659d7) - Soispha
- **(sys/nixos_git_rev)** Add a file with the current git reverence - (1fd3abb) - Soispha
- **(sys/svcs/nix)** Switch to nixUnstable - (21bfc86) - Soispha
#### Refactoring
- **(flake)** Remove by-now vendored dependency - (50ca4e7) - Soispha
- **(hm/conf/lf)** Move configs to `settings` attr - (5e7a6de) - Soispha
- **(hm/conf/lf/cmds/archive)** Use non-abbreviated cli option - (f8cf3b1) - Soispha
- **(hm/conf/lf/cmds/open)** Remove, as it's better handled by xdg-handlers - (a5b890a) - Soispha
- **(hm/conf/unison)** Rename the script to `unison-sync` - (0e12e45) - Soispha
- **(treewide)** Remove my unused binaries - (2531f80) - Soispha
#### Style
- **(treewide)** Format - (9cafe29) - Soispha
- - -
## v1.30.0 - 2024-02-20
#### Features
- **(hm/pkgs/battery)** Init - (954ff9a) - Soispha
- - -
## v1.29.0 - 2024-02-20
#### Features
- **(hm/conf/firefox)** Add order of search engines - (901751c) - Soispha
- **(hm/conf/firefox/config/search)** Add nixpkgs pull request tracker search - (d8ebc7c) - Soispha
#### Refactoring
- **(hm/conf/firefox/config/search)** Download icons to avoid losing them - (d3ae268) - Soispha
- - -
## v1.28.0 - 2024-02-20
#### Bug Fixes
- **(flake)** Don't format `CHANGELOG.md` - (6cd532b) - Soispha
- **(hm/conf/nix/plgs/lsp/s/openscad)** GNU is unfortunately not the best format - (7c1cea5) - Soispha
#### Build system
- **(cog.toml)** Add formatting step - (ad02935) - Soispha
- **(flake)** Add treefmt - (7d7bb48) - Soispha
- **(treewide)** Update - (58f3d4e) - Soispha
#### Features
- **(hm/conf/nix/plgs/lsp/servers/openscad)** Init - (b1fed6e) - Soispha
#### Refactoring
- **(hm/conf/zsh/config)** Rework old config scripts - (1f56d6d) - Soispha
- **(treewide)** Reformat all files with treefmt - (f2bdeae) - Soispha
- **(treewide)** Add a `.sh` extension to shell scripts - (cc09b60) - Soispha
- - -
## v1.28.0 - 2024-02-20
#### Bug Fixes
- **(flake)** Don't format `CHANGELOG.md` - (6cd532b) - Soispha
- **(hm/conf/nix/plgs/lsp/s/openscad)** GNU is unfortunately not the best format - (7c1cea5) - Soispha
#### Build system
- **(cog.toml)** Add formatting step - (ad02935) - Soispha
- **(flake)** Add treefmt - (7d7bb48) - Soispha
- **(treewide)** Update - (58f3d4e) - Soispha
#### Features
- **(hm/conf/nix/plgs/lsp/servers/openscad)** Init - (b1fed6e) - Soispha
#### Refactoring
- **(hm/conf/zsh/config)** Rework old config scripts - (1f56d6d) - Soispha
- **(treewide)** Reformat all files with treefmt - (f2bdeae) - Soispha
- **(treewide)** Add a `.sh` extension to shell scripts - (cc09b60) - Soispha
- - -
## v1.27.4 - 2024-02-12
#### Bug Fixes
- **(hm/pkgs/scrs/mpc-fav)** Correctly orient the if condition - (81ddabb) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Estimate filesize can be > an u32 - (2d383cf) - Soispha
- - -
## v1.27.3 - 2024-02-11
#### Bug Fixes
- **(hm/conf/taskwarrior)** Correctly parse project.nix file - (7e201c8) - Soispha
- **(sys/disks)** Differentiate the space limit of '/' an '/tmp' - (5c35f00) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Allow unknown comment author - (9ddb7d8) - Soispha
#### Miscellaneous Chores
- **(hm/soispha/conf/taskwarrior/projects)** Update - (59a13b1) - Soispha
- **(hm/soispha/conf/taskwarrior/projects)** Update - (4704008) - Soispha
- - -
## v1.27.2 - 2024-02-09
#### Bug Fixes
- **(hm/conf/mail)** Disable himalaya because it changed - (455a1c6) - Soispha
- **(sys/nixpkgs/pkgs/yt)** Avoid logging, that mpv can't display chars - (667ec9f) - Soispha
- **(sys/nixpkgs/pkgs/yt)** Replace all quotes - (be0b828) - Soispha
#### Build system
- **(treewide)** Update - (2221976) - Soispha
- - -
## v1.27.1 - 2024-02-08
#### Bug Fixes
- **(sys/svcs/printing)** Active cups webinterface - (85a687d) - Soispha
- - -
## v1.27.0 - 2024-02-07
#### Bug Fixes
- **(hm/pkgs/spodi)** Allow more providers - (55cc9d6) - Soispha
- **(sys)** Use new module options - (57f5a13) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Make `channel_is_verified` optional - (cd344b3) - Soispha
- **(sys/svcs/printing)** Use correct printer network address - (765f20b) - Soispha
- **(sys/svcs/printing)** Configure Cups to be stateless - (6a32061) - Soispha
#### Build system
- **(.envrc)** Set the CDPATH - (f986c96) - Soispha
- **(treewide)** Update - (72ce420) - Soispha
#### Features
- **(hm/pkgs/scrs)** Add `mpc-fav` and `sort_song` - (04e4fe4) - Soispha
#### Refactoring
- **(hm/pkgs/scrs)** Sort the declarations alphabetical - (f2ada3a) - Soispha
- - -
## v1.26.3 - 2024-01-30
#### Bug Fixes
- **(sys/nixpkgs/comments)** Add missing fields to info_json parser - (0bf099b) - Soispha
- - -
## v1.26.2 - 2024-01-30
#### Bug Fixes
- **(treewide)** Fully remove grades - (63b23a0) - Soispha
- - -
## v1.26.1 - 2024-01-30
#### Bug Fixes
- **(hm/pkgs)** Remove `grades` as it no longer compiles - (02ed712) - Soispha
- - -
## v1.26.0 - 2024-01-30
#### Bug Fixes
- **(hm)** Move the session variables to their associated service - (12e3c1a) - Soispha
- **(hm/conf/alacritty)** Correct hint regex - (bfaf53d) - Soispha
- **(hm/conf/alacritty)** Streamline config - (8b9f77e) - Soispha
- **(hm/conf/alacritty)** Use correct name in hint key - (f0e0952) - Soispha
- **(hm/conf/alacritty)** Switch to a toml config - (5442310) - Soispha
- **(hm/conf/less)** Ensure that less can read the lesskey file - (af48eca) - Soispha
- **(hm/conf/less)** Correctly export less variables - (a9ed7c6) - Soispha
- **(hm/conf/less)** Add arguments to MANPAGER back - (90c1c9f) - Soispha
- **(hm/conf/unison)** Correctly implement path ignoring - (e341aea) - Soispha
- **(hm/conf/unison)** Ignore links and the task dir - (e033172) - Soispha
- **(hm/conf/unison)** Set UNISON dir - (4116272) - Soispha
- **(hm/conf/unison)** Add unison to PATH - (adbddd2) - Soispha
- **(hm/conf/unison)** Correct names so that systemd can use them - (722e0b4) - Soispha
- **(hm/conf/unison)** Quickly disable to ensure consistent (manual) updates - (878f9b7) - Soispha
- **(hm/files)** Add manifest.json symlink - (084e140) - Soispha
- **(hm/files)** Generate manifest.json to help home-manager - (7fba735) - Soispha
- **(hm/files/manifest_json)** Make the ln idempotent - (cdf4dde) - Soispha
- **(hm/impermanence)** Persist `~/.local/state/mpv` - (6601bdf) - Soispha
- **(hm/pkgs)** Remove old `comments` scripts and use rust rewrite - (d711c5f) - Soispha
- **(hm/pkgs/neorg)** Add execution permission - (f25b69f) - Soispha
- **(hm/pkgs/neorg/utils)** Use correct DOM access path - (a4d81fe) - Soispha
- **(hm/pkgs/scr/spec/ytcc/comments)** Add `wl-clipboard` to support copy - (3c855a3) - Soispha
- **(hm/pkgs/yts)** Use new rewritten version - (335d6d5) - Soispha
- **(sys/nixpkgs/pkgs)** Actually add new comments package - (03e9271) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Export the package under the correct name - (5ccb0b0) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Reduce copied `expects` - (90a3452) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Append comments to the back of replies - (5e56177) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Wrap with correct `fmt` - (1e4bf48) - Soispha
- **(sys/nixpkgs/pkgs/yt)** Use correct type in json parsing - (f168344) - Soispha
- **(sys/nixpkgs/pkgs/yt)** Use already existing cargo lock file - (f2c6758) - Soispha
- **(sys/nixpkgs/pkgs/yt)** Don't remove path as 'yt' and 'yts' need nvim - (b02f39f) - Soispha
- **(sys/nixpkgs/pkgs/yt/ytc)** Allow watching already watched ids - (3c9e46f) - Soispha
- **(sys/nixpkgs/update_pkgs)** Allow to hide expansive updates behind flag - (ba72754) - Soispha
- **(sys/nixpkgs/yt)** Ensure that the downloader downloads everything - (1ccb124) - Soispha
- **(sys/nixpkgs/yt/constants)** Add extension to last selection path - (0ec39f4) - Soispha
- **(sys/nixpkgs/yt/downloader)** Be more lenient with yt-dlp exit codes - (d771ab4) - Soispha
- **(sys/nixpkgs/yt/{yt,ytc})** Ignore sponsor block API access errors - (8e85492) - Soispha
- **(sys/nixpkgs/yt/{yt,yts})** Correctly wrap them - (094b1e1) - Soispha
- **(sys/nixpkgs/ytc)** Check if symlink path exists - (2871dfb) - Soispha
- **(sys/svcs/nix)** Improve some default configuration - (2631fac) - Soispha
- **(treewide)** Comply with the shell library's new argument names - (98b5114) - Soispha
#### Build system
- **(flake)** Update - (27a28f3) - Soispha
- **(treewide)** Update - (df31b93) - Soispha
- **(treewide)** Update - (4ad7626) - Soispha
- **(treewide)** Update - (24c6fb9) - Soispha
- **(treewide)** Update - (51fdcaf) - Soispha
- **(treewide)** Update shell library - (7678a8a) - Soispha
- **(treewide)** Update shell library - (fae6e6a) - Soispha
- **(treewide)** Update shell library - (86560bc) - Soispha
- **(treewide)** Update shell library - (bf2895e) - Soispha
- **(treewide)** Update flake and shell library - (95c9314) - Soispha
#### Documentation
- **(hm/pkgs/scrs/neorg/utils)** Fix typo in comment - (8096743) - Soispha
#### Features
- **(flake)** Add `pkgs` subattribute - (3a0db9d) - Soispha
- **(hm/conf/less)** Configure the full lesskey file - (4b17d30) - Soispha
- **(hm/conf/nvim/plgs/treesitter)** Add custom parser for `yts` - (849cd60) - Soispha
- **(hm/conf/unison)** Init - (cbe0179) - Soispha
- **(hm/pkgs/scr/nato)** init - (f45cd31) - Soispha
- **(hm/pkgs/scr/show)** init - (6099fd8) - Soispha
- **(hm/pkgs/specific/neorg)** Add draft of rewrite in nu - (361c87c) - Soispha
- **(hosts)** Disable Steam - (da93c52) - Soispha
- **(sys/nixpkgs/pkgs)** Add update scripts - (d7d898d) - Soispha
- **(sys/nixpkgs/pkgs/comments)** Init - (736d448) - Soispha
- **(sys/nixpkgs/pkgs/yt)** Merge ytc and the rewritten ytc - (089c08a) - Soispha
- **(sys/nixpkgs/yt)** Add support for the 'url' command - (b53a8d8) - Soispha
- **(sys/nixpkgs/yt/{yt,ytc})** Persist old selection file - (ba3273c) - Soispha
#### Refactoring
- **(hm/pkgs/scrs/specific/neorg/sh)** Split the script into sub-scripts - (94b2cdc) - Soispha
- - -
## v1.25.0 - 2024-01-07
#### Bug Fixes
- **(flake)** Add `cargo` to make the rust language server work - (7aaea01) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Explicitly exit with 0 - (3ecbeb4) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Actually make the subcommands optional - (98fd08f) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Only trap the task stop if it's started - (40179fb) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Add default ordering mode - (ae777ec) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Recognize '' as a command - (da9e441) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Remove out-dated check - (ce67e20) - Soispha
- **(hm/pkgs/scr/ytc)** Set output separator not to '"' but ';' - (57db8dc) - Soispha
- **(hm/pkgs/scr/ytc)** Allow titles with commas in them - (6f337ee) - Soispha
- **(hm/pkgs/scr/ytc)** Don't use while in a if situation - (a12e4fb) - Soispha
- **(hm/pkgs/scr/ytc)** Add default volume and unrestrict filenames - (51c7243) - Soispha
- **(hm/pkgs/scr/ytc)** Use `/tmp` instead of the xdg runtime dir - (8668bca) - Soispha
- **(hm/pkgs/scr/ytcc/filter_comments)** Fail if not running - (20fa03a) - Soispha
- **(hm/pkgs/scr/ytcc/filter_comments.sh)** Rename export script to 'comments' - (e7fc94b) - Soispha
- **(hm/pkgs/scr/ytcc/nest_comments)** Correctly declare cli interface - (619c5cf) - Soispha
- **(hm/pkgs/scr/ytcc/ytc)** Keep sorting from input - (6630f78) - Soispha
- **(hm/pkgs/scr/ytcc/yts)** Adopt to new ytc input format - (c0eed61) - Soispha
- **(hm/pkgs/scr/yts)** Always stop the active task, when exiting - (4284b35) - Soispha
- **(hm/pkgs/specific/ytcc/yts)** Don't provide the id as one argument - (3ed86cd) - Soispha
- **(sys/nixpkgs/pkgs/ytc)** Wrap program - (2876a83) - Soispha
- **(sys/nixpkgs/pkgs/ytc/scr)** Create download dir - (0d63f06) - Soispha
- **(sys/nixpkgs/pkgs/ytc/scr/main)** Also delete the file if no id is set - (30808e8) - Soispha
- **(sys/nixpkgs/pkgs/ytc/scr/main)** Stop mpv from spamming up stdout - (4e00805) - Soispha
#### Documentation
- **(hm/pkgs/scr/specific/ytcc/yts)** Add a help text - (0b77143) - Soispha
- **(sys/nixpkgs/pkgs/ytc)** Slightly improve error output - (82adf42) - Soispha
#### Features
- **(flake)** Add `rustfmt` to the dev environment - (180326f) - Soispha
- **(hm/pkgs/scr)** Add support for python based scripts - (9aec145) - Soispha
- **(hm/pkgs/scr/specific/ytcc/description)** Add command to display description - (458f532) - Soispha
- **(hm/pkgs/scr/specific/ytcc/yts)** Add cli interface - (1c665e9) - Soispha
- **(hm/pkgs/scr/ytcc)** Add support for showing comments - (ea09ccf) - Soispha
- **(hm/pkgs/scr/ytcc/ytc)** Rewrite in Rust - (d33998b) - Soispha
- **(hm/pkgs/scr/ytcc/ytc)** Add support for direct urls - (552f466) - Soispha
#### Miscellaneous Chores
- **(hm/soispha/conf/taskwarrior/projects)** Update - (d84d378) - Soispha
#### Refactoring
- **(hm/pkgs/scr/neorg)** Add subdir for specific script groups - (36f0084) - Soispha
- - -
## v1.24.0 - 2024-01-01
#### Bug Fixes
- **(hm/conf/yambar)** Add some padding - (85a6304) - Soispha
- **(hm/conf/yambar/config)** Use correct anchor - (acea986) - Soispha
- **(hm/conf/yambar/scripts/sound_volume)** Add higher sleep time - (05ff197) - Soispha
- **(hm/conf/ytcc)** Use better nested download directories - (df7ce08) - Soispha
- **(hm/conf/ytcc/conf)** Remove duplicated config key - (43eb4d1) - Soispha
- **(hm/pkgs/ytc)** Wait for last mpv instance to exit before starting burndown - (0d09df6) - Soispha
- **(hm/pkgs/ytc)** Improve cli output - (fae4583) - Soispha
#### Build system
- **(treewide)** Update - (076b147) - Soispha
#### Features
- **(hm/conf/yambar)** Show currently playing song in bar - (f3ca160) - Soispha
- **(hm/conf/ytcc)** Init - (4ace681) - Soispha
- **(hm/pkgs/ytc)** Init - (2c2458c) - Soispha
- **(hm/pkgs/yts)** Init - (b155308) - Soispha
- - -
## v1.23.0 - 2023-12-31
#### Bug Fixes
- **(hm/conf/task/hooks/)** Correctly wrap python hooks to add timewarrior - (3cc639d) - Soispha
- **(hm/conf/task/hooks/)** Correctly wrap python hooks to add timewarrior - (1b744b9) - Soispha
- **(hm/pkgs)** Remove unneeded array - (9bc0c05) - Soispha
- **(hm/pkgs/con2pdf)** Don't reassing `name` variable as it's global - (b9c9e06) - Soispha
- **(hm/pkgs/con2pdf)** Correctly sort and clear inputs - (05fd93a) - Soispha
- **(hm/pkgs/con2pdf)** Allow for multiple pages on adf - (efafba1) - Soispha
- **(hm/pkgs/neorg)** Don't limit too many things on 'tracking' - (ba85d7e) - Soispha
- **(hm/pkgs/scr/neorg)** The id argument to 'fstart' is not optional - (97def8c) - Soispha
- **(sys/svcs/postgresql)** Only active if not on a laptop - (3d97e34) - Soispha
#### Build system
- **(treewide)** Update - (a9bb6cf) - Soispha
#### Documentation
- **(hm/pkgs/con2pdf)** Add dbg statements - (c35ede7) - Soispha
#### Features
- **(hm/pkgs)** Add ytcc - (371a980) - Soispha
- **(hm/pkgs/lock)** Init - (8ea57d8) - Soispha
- **(hm/pkgs/neorg)** Add a subcommand to stop the currently active task - (7853b10) - Soispha
- - -
## v1.22.1 - 2023-12-29
#### Bug Fixes
- **(hm/pkgs/hibernate)** Only unset task context + active if existing - (2292808) - Soispha
- - -
## v1.22.0 - 2023-12-29
#### Bug Fixes
- **(hm/conf/)** Use new xdg config module - (02f2218) - Soispha
- **(hm/conf/starship)** Also disable git_metrics because of speed - (71dd569) - Soispha
- **(hm/conf/starship)** Remove the on in the git branch module - (999be2a) - Soispha
- **(hm/conf/starship)** Use different approach to directory styling - (fc61706) - Soispha
- **(hm/conf/starship)** Try to change path colour based on exit - (f1641ed) - Soispha
- **(hm/conf/starship)** Correctly escape strings - (b2e3e1e) - Soispha
- **(hm/conf/xdg)** Correctly specify the attr names under xdg - (5474561) - Soispha
- **(hm/conf/xdg/url_handler)** Add final pipe, to improve rofi rendering - (e753294) - Soispha
- **(hm/conf/zsh)** Remove my prompt implementation - (00c05d5) - Soispha
- **(sys/svcs/xdg/portal)** Actually enable termfilechooser and wlr - (9e00787) - Soispha
- **(sys/svcs/xdg/portals)** Set the terminal window to floating - (20cb966) - Soispha
- **(sys/svcs/xdg/portals)** Fix typo in alacritty - (7614d6c) - Soispha
- **(sys/svcs/xdg/portals)** Add alacritty to the dependencies - (5c4f959) - Soispha
- **(sys/svcs/xdg/portals)** Set stdout and err debugging - (2e4821e) - Soispha
- **(sys/svcs/xdg/portals)** Switch to trace and set correct terminal exec - (af95c08) - Soispha
- **(sys/svcs/xdg/portals)** Set loglevel - (8888ac0) - Soispha
- **(sys/svcs/xdg/portals)** Set default download dir - (df27d12) - Soispha
- **(sys/svcs/xdg/portals)** Set correct permission of shell script - (f93f3fa) - Soispha
- **(sys/svcs/xdg/portals)** Use correct path to lf wrapper - (9d61601) - Soispha
#### Build system
- **(flake)** Update - (90b0a2b) - Soispha
- **(flake)** Update - (fc96d6c) - Soispha
#### Features
- **(hm/conf/git)** Update git defaults and add wip command - (a340fd2) - Soispha
- **(hm/conf/starship)** Add basic config - (5bd6ec4) - Soispha
- **(hm/conf/starship)** Init - (d3ff3d5) - Soispha
- **(hm/conf/xdg/url_handler)** Also support opening in zathura - (7fc5e9e) - Soispha
- **(hm/pkgs/hibernate)** Init - (e852be1) - Soispha
- **(sys/srvc/xdg/termfilechooser)** Reactive - (d562827) - Soispha
#### Refactoring
- **(hm/pkgs/)** Rename all 'src' to 'scr' to improve consistency - (e84c41c) - Soispha
- - -
## v1.21.0 - 2023-12-29
#### Bug Fixes
- **(hm/conf/git)** Use correct path for codeberg ssh url substitution - (5a4815d) - Soispha
- **(hm/conf/git)** Revert changing the st alias to the short status - (5fbc81b) - Soispha
- **(hm/conf/zsh/sessionVariables)** Add river specific variables - (5013bba) - Soispha
- **(hm/pkgs)** Remove sane-ariscan, as that's covered by con2pdf - (9ed8f78) - Soispha
- **(hm/pkgs/scr/neorg)** Convert context to project before use - (bd7226b) - Soispha
- **(hm/pkgs/scr/neorg)** Escape single quotes in completion function - (77c3715) - Soispha
- **(hm/pkgs/scr/neorg)** List all task when no context is set - (ea13e10) - Soispha
- **(hm/pkgs/src/lyrics)** Adapt to new spotdl settings - (d3638ae) - Soispha
- **(hm/pkgs/src/neorg)** Fix exit from subshell - (04d128b) - Soispha
- **(hm/pkgs/src/neorg)** Move to script as completion generation function - (727f17e) - Soispha
- **(hm/pkgs/src/neorg)** Remove duplicated `[[]]` in doc function - (7242fd6) - Soispha
- **(hm/pkgs/src/neorg/fstart)** Fix typo in task filter - (8f976d1) - Soispha
- **(hm/pkgs/src/neorg/project)** Exit instead of doing something different - (5b30a28) - Soispha
- **(hm/pkgs/src/neorg/utils)** Correctly convert context to project names - (a499917) - Soispha
- **(hm/pkgs/src/spodi)** Set constant bitrate - (0600b78) - Soispha
- **(hm/wms/river/init)** Also export river env-vars to system user service - (60adb05) - Soispha
- **(sys/svcs/xdg)** Use correct types in termchooser config - (5dfa705) - Soispha
- **(sys/svcs/xdg/scripts/lf_wrapper)** Use correct name - (4a246f1) - Soispha
- **(sys/svcs/xdg/termfilechooser)** Remove as river does not support it - (49ddb57) - Soispha
#### Build system
- **(flake)** Update - (9725b98) - Soispha
- **(treewide)** Update shell library - (b726043) - Soispha
- **(treewide)** Update to test xdg-desktop-portal-termfilechooser - (4275064) - Soispha
#### Features
- **(hm/conf/git)** Use correct escaping for '${}' in nix - (d28d93e) - Soispha
- **(hm/conf/git)** Use the previous commit's scope when committing - (d3ed407) - Soispha
- **(hm/conf/git)** Incorporate elements of other peoples configs - (b166f22) - Soispha
- **(hm/conf/xdg)** Add a custom url_handler to support select the project - (e77f8ca) - Soispha
- **(hm/pkgs/)** Add the bc calculator - (8acacc4) - Soispha
- **(hm/pkgs/scr/neorg)** Add a subcommand to making starting task easier - (e628885) - Soispha
- **(hm/pkgs/scr/neorg)** Change the active task and context when opening browser - (c4c5c71) - Soispha
- **(sys/options/secret)** Add secret values to evaluation - (612dad9) - Soispha
- **(sys/svcs/xdg/termchooser)** Init - (b9d22e2) - Soispha
- - -
## v1.20.5 - 2023-12-19
#### Bug Fixes
- **(hm/pkgs/src/spodi)** Remove setting bitrate - (c950470) - Soispha
- - -
## v1.20.4 - 2023-12-19
#### Bug Fixes
- **(hm/pkgs/src/spodi)** Remove youtube and piped from audio provider list - (49c5787) - Soispha
- - -
## v1.20.3 - 2023-12-19
#### Bug Fixes
- **(hm/pkgs/src/spodi)** Use conventional lyrics again - (ac24887) - Soispha
- - -
## v1.20.2 - 2023-12-19
#### Bug Fixes
- **(hm/pkgs/src/spodi)** Also exclude error-log - (47386bd) - Soispha
- **(hm/pkgs/src/spodi)** Remove quotes in the error-log path - (fd6ff36) - Soispha
- - -
## 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).
|