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:
parent
42954e7214
commit
55f2304223
|
@ -381,7 +381,7 @@ in
|
||||||
stateVersion = "23.05";
|
stateVersion = "23.05";
|
||||||
language = {
|
language = {
|
||||||
base = "en_US.UTF-8";
|
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; [
|
packages = with pkgs; [
|
||||||
# dotfiles dependencies
|
# dotfiles dependencies
|
||||||
|
|
|
@ -22,7 +22,7 @@ let
|
||||||
owner = "unblevable";
|
owner = "unblevable";
|
||||||
repo = "quick-scope";
|
repo = "quick-scope";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "iAPvIs/lhW+w5kFTZKaY97D/kfCGtqKrJVFvZ8cHu+c=";
|
sha256 = "TcA4jZIdnQd06V+JrXGiCMr0Yhm9gB6OMiTSdzMt/Qw=";
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/unblevable/quick-scope";
|
meta.homepage = "https://github.com/unblevable/quick-scope";
|
||||||
};
|
};
|
||||||
|
@ -255,7 +255,6 @@ in
|
||||||
# f/F mode
|
# f/F mode
|
||||||
vim-shot-f # Highlight relevant characters for f/F/t/T modes
|
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
|
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
|
||||||
registers-nvim # Show register content when pressing "
|
registers-nvim # Show register content when pressing "
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
|
|
||||||
# android tools
|
# android tools
|
||||||
android-udev-rules
|
android-udev-rules
|
||||||
|
|
||||||
|
# Needed for all the fetchFromGit in this repo on nixos-rebuild
|
||||||
|
git
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
Loading…
Reference in a new issue