Set nvim as default editor

This commit is contained in:
Armel van Ravels
2026-03-19 14:14:48 +01:00
parent 95b7dd5e43
commit 5084df1352
2 changed files with 3 additions and 1 deletions

View File

@@ -52,9 +52,10 @@
boot.kernelPackages = pkgs.linuxPackages_zen; boot.kernelPackages = pkgs.linuxPackages_zen;
}; };
}; };
services = { services = {
# Bluetooth fixes # Bluetooth fixes
# Can be removed when https://github.com/NixOS/nixpkgs/pull/499670 is merged and in 25.11
udev.extraRules = '' udev.extraRules = ''
SUBSYSTEM=="usb", ENV{ID_VENDOR_ID}=="0489", ENV{ID_MODEL_ID}=="e111", ENV{UDISKS_IGNORE}="1", ENV{ID_MEDIA_PLAYER}="", ENV{ID_MTP_DEVICE}="", ENV{ID_GPHOTO2}="", ENV{ID_INPUT}="", ENV{SOLID_IGNORE}="1", TAG-="uaccess" SUBSYSTEM=="usb", ENV{ID_VENDOR_ID}=="0489", ENV{ID_MODEL_ID}=="e111", ENV{UDISKS_IGNORE}="1", ENV{ID_MEDIA_PLAYER}="", ENV{ID_MTP_DEVICE}="", ENV{ID_GPHOTO2}="", ENV{ID_INPUT}="", ENV{SOLID_IGNORE}="1", TAG-="uaccess"

View File

@@ -3,6 +3,7 @@
{ {
programs.neovim = { programs.neovim = {
enable = true; enable = true;
defaultEditor = true;
extraLuaPackages = ps: [ ps.magick ]; extraLuaPackages = ps: [ ps.magick ];
extraPackages = [ extraPackages = [
pkgs.ueberzugpp pkgs.ueberzugpp