nix #11

Manually merged
geoffrey merged 113 commits from nix into main 2023-12-09 21:43:01 +01:00
3 changed files with 5 additions and 3 deletions
Showing only changes of commit 55f2304223 - Show all commits

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;