| Commit message (Collapse) | Author | ||
|---|---|---|---|
| 2024-11-23 | fix(modules/nvim/plgs/lsp/servers): Avoid conditional in `lsp.servers` | Benedikt Peetz | |
| The attrs in `lsp.servers` seem to be taken literally and as such do not support the `lib.modules.mkIf` mechanic, nixos normally supports. Thus moving the `lib.mkIf` calls to the parent attrs should fix it. | |||
| 2024-11-23 | fix(modules/nvim/plgs/neorg): Use the correct ft name in ftplugin | Benedikt Peetz | |
| The neorg filetype is named `norg` not `neorg`. | |||
| 2024-11-23 | fix(modules/nvim/plgs/lsp/ruff): Replace deprecated ruff_lsp with ruff | Benedikt Peetz | |
| 2024-11-23 | fix(modules/nvim/plgs/neorg): Move keybind setup to separate ftplugin | Benedikt Peetz | |
| 2024-11-23 | refactor(modules/nvim/files): Move to their respective plugin | Benedikt Peetz | |
| 2024-11-23 | style(treewide): Refactor | Benedikt Peetz | |
| 2024-11-23 | fix(modules/taskwarrior): Provide an enable option | Benedikt Peetz | |
| 2024-11-22 | build(flake): Update | Benedikt Peetz | |
| 2024-11-17 | refactor(legacy/conf/mpd): Move to a unified `mpd` by-name module | Benedikt Peetz | |
| 2024-11-16 | build(treewide): Update | Benedikt Peetz | |
| 2024-11-09 | fix(modules/nvim/options): Use shell binary, not only directory | Benedikt Peetz | |
| 2024-11-09 | fix(modules/nvim/plgs/neorg): Reactivate the calendar module | Benedikt Peetz | |
| `nvim` has by now reached version 0.10.0 in nixpkgs. | |||
| 2024-11-09 | fix(modules/nvim/plgs/neorg): Use updated version | Benedikt Peetz | |
| 2024-11-09 | refactor(modules/legacy/conf/nvim): Move to `by-name` | Benedikt Peetz | |
| 2024-11-03 | fix(modules/less/command.less): Improve keymappings | Benedikt Peetz | |
| This removes some unneeded ones and adds the ARROW UP mapping to ensure symmetry to the ARROW DOWN mapping. | |||
| 2024-11-02 | fix(modules/less/command): Re-enable `#stop` | Benedikt Peetz | |
| This feature regressed in less 661 but was fixed in 668. See: - https://github.com/gwsw/less/issues/551 - https://github.com/gwsw/less/commit/2526c72b1212b2a1f34bdda88a93b0c7f7b4a16a | |||
| 2024-11-02 | refactor(modules/legacy/less): Migrate to `by-name` | Benedikt Peetz | |
| 2024-11-01 | build(treewide): Update | Benedikt Peetz | |
| 2024-11-01 | build(modules/lf/secrets/update_secrets.sh): Migrate to `nix-shell` shebang | Benedikt Peetz | |
| Lix does not (maybe yet) support the nix3 `nix shell` shebang. Thus, switching to a version supported by both is the obvious choice. | |||
| 2024-10-31 | chore(modules/taskserver/secrets): Rotate certificates | Benedikt Peetz | |
| 2024-10-24 | refactor(modules/git): Migrate and parameterize | Benedikt Peetz | |
| 2024-10-24 | feat(modules/unison): Auto-ignore all symlinks made with `home.file` | Benedikt Peetz | |
| This allows us to actually sync symlinks, as most of the unwanted ones are already ignored. And syncing the `.direnv` gc-roots is not that much of a problem, because these are re-generated when they point to a non-existent path. | |||
| 2024-10-24 | refactor(modules/unison): Migrate to `by-name` and parameterize | Benedikt Peetz | |
| 2024-10-24 | feat(modules/legacy/impermanence): Merge with the system config | Benedikt Peetz | |
| Using the home-manager module uses a non-root fuse bindfs, which is obviously slower than simply mounting the directories via bind mounts. Besides, mounting them via the bindfs fuse mount, results in a potential DOS, when this mount processes runs out of open file descriptors (leading to the issue described in the `nix -> lix` commit.) | |||
| 2024-10-24 | refactor(modules/impermanence): Move all optional dirs to their modules | Benedikt Peetz | |
| This increases the locality of configurations and makes it easier to see, what happens, when you enable a module. | |||
| 2024-10-24 | feat(modules/nix): Switch to `lix` | Benedikt Peetz | |
| `nix` is currently constantly failing to open some of the sqlite databases, which is just really obnoxious. Although, as I have later found out, this is caused by a `bindfs` fuse mount on `~/.cache`. This process is running against the `1024` open fd soft limit, and thus refusing to open another one for the database. | |||
| 2024-10-23 | fix(modules/zsh): Support completion again | Benedikt Peetz | |
| These mappings were missed in the `zsh` rework, and are apparently needed for completion to work. | |||
| 2024-10-21 | fix(modules/atuin): Swap cursor modes | Benedikt Peetz | |
| All my software is using a block cursor in normal/command mode and a bar cursor for insert mode when doing `vi` emulation. `atuin` should do the same. | |||
| 2024-10-21 | feat(modules/zsh): Nearly completely rewrite | Benedikt Peetz | |
| New features: - The `vi` mode is now actually useful - The whole history search/suggestion has been integrated into `atuin` - The `edit-command-line` plugin does no longer print useless stuff - and miscellaneous other things. | |||
| 2024-10-19 | build(treewide): Update | Benedikt Peetz | |
| 2024-10-18 | fix(modules/atuin): Avoid setting `common_subcommands` | Benedikt Peetz | |
| This list already contained nix, and it should be better to follow upstreams changes here, instead of hardcoding it. | |||
| 2024-10-18 | fix(modules/atuin/secrets): Make encryption key shorter | Benedikt Peetz | |
| This might allow `atuin` to parse this key. | |||
| 2024-10-18 | fix(modules/atuin): Don't try to save space at all costs | Benedikt Peetz | |
| `atuin` really breaks with these settings. Thus, it's better to allow it to take up more space. | |||
| 2024-10-18 | fix(modules/atuin/secrets): Improve secret key formatting | Benedikt Peetz | |
| The current formatting does not work with atuin. | |||
| 2024-10-18 | style(modules/serverphone): Correct syntax and format | Benedikt Peetz | |
| 2024-10-18 | feat(modules/atuin): Init | Benedikt Peetz | |
| 2024-10-18 | refactor(modules/secrets): Split into the modules, that need the secrets | Benedikt Peetz | |
| Storing the secrets in the module that actually needs them, is a cleaner solution. | |||
| 2024-10-18 | refactor(modules/legacy/conf/lf): Move to new `by-name` dir | Benedikt Peetz | |
| This makes it possible to mix and match between `NixOS` and `home-manager` options and thus allows merging the secret handling directly into this module. Furthermore, the `systemd` tempfiles handling was also merged into this module. | |||
| 2024-10-18 | refactor(modules/legacy/conf/zsh): Parameterize and move to new `by-name` | Benedikt Peetz | |
| 2024-10-18 | fix(modules/legacy/conf/zsh): Move ENV-vars to their own modules | Benedikt Peetz | |
| This also creates the `imv` and `zathura` module, but the added configuration should be trivial (especially in the `imv` case.) | |||
| 2024-10-18 | docs(modules/home-manager): Add a TODO regarding a better error message | Benedikt Peetz | |
| 2024-10-18 | refactor(modules): Move all system modules to `by-name` | Benedikt Peetz | |
| From now on all modules should be added to the new `by-name` directory. This should help remove the (superficial and utterly useless) distinction between `home-manager` and `NixOS` modules. | |||
