about summary refs log tree commit diff stats
path: root/flake/default.nix (unfollow)
Commit message (Collapse)Author
2023-09-17feat(sys/srvs/adb): InitSoispha
2023-09-16build(flake): UpdateSoispha
2023-09-16chore(version): v1.12.0 Soispha
2023-09-16feat(hm/conf/zsh/insults): InitSoispha
2023-09-16fix(treewide): Update to new `tmp` function interfaceSoispha
2023-09-16fix(treewide): Update shell librarySoispha
2023-09-16fix(treewide): Update to the newest shell lib versionSoispha
2023-09-16build(flake): UpdateSoispha
2023-09-10Fix(treewide): Purge `snap-sync` in favour of `snap-sync-forked`Soispha
2023-09-10Fix(treewide): Provide `snap-synced-forked` as overlay and thus as pkgSoispha
2023-09-05Build(flake): UpdateSoispha
2023-09-05Fix(hm/pkgs/scritps/neorg): Add ability to access workspace directlySoispha
2023-09-05chore(version): v1.11.0 Soispha
2023-09-05Fix(hm/conf/zsh): Ensure that the sourced shell library also gets updatedSoispha
2023-09-05Fix(hm/conf/gpg/keys/key_4): Add missing commentsSoispha
2023-09-05Build(flake): UpdateSoispha
2023-09-05Feat(hm/conf/gpg/keys): Add gpg keySoispha
2023-09-05chore(version): v1.10.0 Soispha
2023-09-05Docs(sys/disks/hibernate): Remove resolved TODO commentSoispha
2023-09-05Fix(treewide): Update to new shell library versionSoispha
This step was done automatically by running: ```bash nix run .#update_shell_lib ```
2023-09-05Feat(flake/packages): Pass through `shell_library_update` packagesSoispha
2023-09-05Build(treewide): UpdateSoispha
2023-09-05Feat(hm/pkgs/scripts/neorg): InitSoispha
2023-09-02Fix(hm/conf/nvim/plgs/luasnip/todo_snippets): Decapitalize my nameSoispha
2023-09-02Fix(hm/conf/lf/keymappings): Add command to go to nixos-configSoispha
2023-09-02Fix(hm/conf/lf/keybinds): Fix missing settings in the cd commandsSoispha
2023-09-02Fix(sys/waydroid): Disable waydroid again, as it breaks fuse mountsSoispha
2023-09-02Fix(sys/impermanence): Add waydroid image directorySoispha
2023-09-02Feat(sys/waydroid): InitSoispha
2023-08-31Fix(sys/srvs/xdg): Add gtk desktop portalSoispha
2023-08-31Fix(hm/wms/river): Use new keymapsSoispha
2023-08-31Fix(sys/locale/keymaps/us): Use compose key and deal with qmk macrosSoispha
2023-08-31Fix(sys/locale/keymaps/us): Switch to lalt, as caps is hard to map in qmkSoispha
2023-08-31Fix(sys/locale/keymaps): Set correct amount of levels for the `a` keySoispha
2023-08-30Fix(sys/locale/keymap): Formatting issuesSoispha
2023-08-30Feat(sys/locale): Add modified dvorak keymapSoispha
2023-08-30Feat(sys/locale): Add a keymap with special char supportSoispha
2023-08-30Fix(hm/conf/lf/keymaps): Run the rename command in the consoleSoispha
Otherwise the part after the semicolon is ignored.
2023-08-30Fix(sys/impermanence): Add `/var/lib/systemd` to saved pathsSoispha
2023-08-30Fix(sys/impermanence): Add `/var/lib/bluetooth` to saved pathSoispha
2023-08-30chore(version): v1.9.1 Soispha
2023-08-30Fix(hm/conf/nvim/mappings): Switch `gg` to `uu`Soispha
Commit b625cac35a8bacd2cfbb430347fc6b5f918d82db should already have done this, but sort of missed the letters.
2023-08-30chore(version): v1.9.0 Soispha
2023-08-30Fix(hm/conf/nvim/mappings): Add missing "change without register" mapSoispha
2023-08-30Feat(hm/conf/nvim/mappings): Add mapping to go to file (<enter>)Soispha
2023-08-30Fix(hm/conf/nvim/mappings): Switch the confirm map from `cc` to `uu`Soispha
The amount of words with two c's seems to be bigger than the amount of words with two u's. The amount of duplicate letters in English words (466k words): ``` { 'aa': 250, 'bb': 1706, 'cc': 2370, 'dd': 1819, 'ee': 7231, 'ff': 3057, 'gg': 2107, 'hh': 112, 'ii': 574, 'jj': 6, 'kk': 132, 'll': 18613, 'mm': 3425, 'nn': 3944, 'pp': 3566, 'oo': 7363, 'qq': 4, 'rr': 5747, 'ss': 20062, 'tt': 5815, 'uu': 68, 'vv': 44, 'ww': 82, 'xx': 9, 'yy': 9, 'zz': 564 } ``` Generated with this[1] list and the following python script: ```python def load_words(): with open('words_alpha.txt') as word_file: valid_words = set(word_file.read().split()) return valid_words if __name__ == '__main__': english_words = load_words() d_chars = ['aa', 'bb', 'cc', 'dd', 'ee', 'ff', 'gg', 'hh', 'ii', 'jj', 'kk', 'll', 'mm', 'nn', 'pp', 'oo', 'qq', 'rr', 'ss', 'tt', 'uu', 'vv', 'ww', 'xx', 'yy', 'zz'] hits = { 'aa': 0, 'bb': 0, 'cc': 0, 'dd': 0, 'ee': 0, 'ff': 0, 'gg': 0, 'hh': 0, 'ii': 0, 'jj': 0, 'kk': 0, 'll': 0, 'mm': 0, 'nn': 0, 'pp': 0, 'oo': 0, 'qq': 0, 'rr': 0, 'ss': 0, 'tt': 0, 'uu': 0, 'vv': 0, 'ww': 0, 'xx': 0, 'yy': 0, 'zz': 0 } for word in english_words: for d_char in d_chars: print("checking " + d_char + " for existence in " + word) if d_char in word: print(d_char + " is in " + word) hits[d_char] = hits[d_char] + 1 print(hits) ``` [1]: https://github.com/dwyl/english-words
2023-08-30Fix(sys/srvs/getty): Remove autologin, as it actually logs the user inSoispha
2023-08-30Feat(hm/conf/nvim/plgs/flatten-nvim): InitSoispha
2023-08-29Feat(hm/conf/nvim/maps): Add keymaps for tab movementSoispha
2023-08-29Fix(sys/font/font.local): Remove comment, as it's not accepted in theSoispha