diff --git a/BROKEN.md b/BROKEN.md index a717163..c9cffa0 100644 --- a/BROKEN.md +++ b/BROKEN.md @@ -13,7 +13,7 @@ put the soon-to-be attributes here, so I don't forget. ```nix - nixConfig = with builtins; mapAttrs (_: concatStringsSep " ") { + nixConfig = with builtins; mapAttrs (name: concatStringsSep " ") { extra-substituters = [ "https://nix-community.cachix.org/" "https://hyprland.cachix.org/" diff --git a/modules/helix/default.nix b/modules/helix/default.nix index 4a2901b..2df73a5 100644 --- a/modules/helix/default.nix +++ b/modules/helix/default.nix @@ -49,7 +49,7 @@ render.tab = "all"; }; - settings.keys = lib.genAttrs [ "normal" "select" ] (_: { + settings.keys = lib.genAttrs [ "normal" "select" ] (name: { D = "extend_to_line_end"; }); };