fix: add neovim to systempackages rather than user packages

This commit is contained in:
Artur Manuel 2024-11-25 21:16:57 +00:00
commit d87a3e1c47
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,8 @@
{pkgs, ...}: { {
inputs,
pkgs,
...
}: {
environment = { environment = {
systemPackages = builtins.attrValues { systemPackages = builtins.attrValues {
inherit inherit
@ -8,6 +12,7 @@
deadnix deadnix
alejandra alejandra
; ;
neovim = inputs.painless-neovim.packages.${pkgs.system}.default;
}; };
sessionVariables = {EDITOR = "nvim";}; sessionVariables = {EDITOR = "nvim";};
}; };

View file

@ -25,7 +25,6 @@
nicotine-plus nicotine-plus
nautilus nautilus
; ;
neovim = inputs.painless-neovim.packages.${pkgs.system}.default;
}; };
groups = [ groups = [
"wheel" "wheel"