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

@@ -55,6 +55,7 @@
services = {
# Bluetooth fixes
# Can be removed when https://github.com/NixOS/nixpkgs/pull/499670 is merged and in 25.11
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"

View File

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