fix(nvim): use legacyPackages instead of importing
All checks were successful
/ check (nvimDev) (push) Successful in 5s
/ check (nvimHeadless) (push) Successful in 2s
/ check (nvimNoBundledBins) (push) Successful in 4s
/ check (nvimNoLsp) (push) Successful in 4s
/ check (nvimNoTSGrammars) (push) Successful in 5s
/ check (treefmt) (push) Successful in 3s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 3s

Importing nixpkgs is much slower.
This commit is contained in:
Jalil David Salamé Messina 2024-12-26 23:11:38 +01:00
parent 8dd1b00967
commit 1032b19759
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -16,7 +16,7 @@
];
config = {
nixpkgs = lib.optionalAttrs standalone { pkgs = import unstable { inherit system; }; };
nixpkgs = lib.optionalAttrs standalone { pkgs = unstable.legacyPackages.${system}; };
globals.mapleader = " ";
# Appearance
colorschemes.gruvbox = {