diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 22:33:46 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 22:33:46 +0100 |
commit | 58eed70ed403d109e0e416f765dd2035db6e393b (patch) | |
tree | be39dcfbfb967acb8cbb67c3035b7e459fd99b21 /modules | |
parent | fix(modules/lf/ctpv/prev/achrive): Remove `arj` (diff) | |
download | nixos-config-58eed70ed403d109e0e416f765dd2035db6e393b.zip |
fix(pkgs/{atuin,ctpv}): Extend instead of replace
This allows me, to still benefit from upstream version updates.
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/at/atuin/module.nix | 2 | ||||
-rw-r--r-- | modules/by-name/lf/lf/ctpv/default.nix | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/modules/by-name/at/atuin/module.nix b/modules/by-name/at/atuin/module.nix index 2b9f32cf..604ee4ef 100644 --- a/modules/by-name/at/atuin/module.nix +++ b/modules/by-name/at/atuin/module.nix @@ -1,6 +1,7 @@ { config, lib, + pkgs, ... }: let cfg = config.soispha.programs.atuin; @@ -20,6 +21,7 @@ in { home-manager.users.soispha = { programs.atuin = { enable = true; + package = pkgs.atuin-dvorak; enableZshIntegration = config.soispha.programs.zsh.enable; settings = { key_path = "${config.age.secrets.atuin_encryption_key.path}"; diff --git a/modules/by-name/lf/lf/ctpv/default.nix b/modules/by-name/lf/lf/ctpv/default.nix index e25fa344..3748eca4 100644 --- a/modules/by-name/lf/lf/ctpv/default.nix +++ b/modules/by-name/lf/lf/ctpv/default.nix @@ -151,7 +151,7 @@ in { default = config.home-manager.users.soispha.xdg.dataHome; }; - package = lib.mkPackageOption pkgs "ctpv" {}; + package = lib.mkPackageOption pkgs "ctpv-64-types" {}; # TODO: This is necessary, as the `./prev` dir is imported separately and as such # cannot access the `./helpers.sh` file in it's parent directory. |