nix: Various fixes

So that explains why quick-scope didn't work so far... but not why it
built without it.
This commit is contained in:
Geoffrey Frogeye 2023-11-23 13:24:59 +01:00
parent 42954e7214
commit 55f2304223
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
3 changed files with 5 additions and 3 deletions

View file

@ -381,7 +381,7 @@ in
stateVersion = "23.05";
language = {
base = "en_US.UTF-8";
time = "en_DK.UTF-8";
# time = "en_DK.UTF-8"; # FIXME Disabled because complaints during nixos-rebuild switch
};
packages = with pkgs; [
# dotfiles dependencies

View file

@ -22,7 +22,7 @@ let
owner = "unblevable";
repo = "quick-scope";
rev = "v${version}";
sha256 = "iAPvIs/lhW+w5kFTZKaY97D/kfCGtqKrJVFvZ8cHu+c=";
sha256 = "TcA4jZIdnQd06V+JrXGiCMr0Yhm9gB6OMiTSdzMt/Qw=";
};
meta.homepage = "https://github.com/unblevable/quick-scope";
};
@ -255,7 +255,6 @@ in
# f/F mode
vim-shot-f # Highlight relevant characters for f/F/t/T modes
quick-scope # Highlight relevant characters for f/F modes one per word but always
# FIXME Doesn't work here, :QuickScopeToggle doesn't even work
# Registers
registers-nvim # Show register content when pressing "

View file

@ -28,6 +28,9 @@
# android tools
android-udev-rules
# Needed for all the fetchFromGit in this repo on nixos-rebuild
git
];
nixpkgs.config.allowUnfree = true;