Rename package
All checks were successful
/ check (push) Successful in 1m36s

This commit is contained in:
Oliver Davies 2025-08-02 23:26:16 +01:00
parent 89e7e6bd07
commit 3cad85bcdf
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@
perSystem =
{ inputs', pkgs, ... }:
{
packages.nixvim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
packages.neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
inherit pkgs;
module = config.flake.modules.nixvim.custom;

View file

@ -7,7 +7,7 @@
# Ideally:
# nixvim = self.packages.${pkgs.system}.nixvim;
# but https://github.com/danth/stylix/pull/415#issuecomment-2832398958
nixvim = inputs.nixvim.legacyPackages.${pkgs.system}.makeNixvimWithModule {
neovim = inputs.nixvim.legacyPackages.${pkgs.system}.makeNixvimWithModule {
inherit pkgs;
extraSpecialArgs.homeConfig = hmArgs.config;
@ -17,8 +17,8 @@
in
{
home = {
packages = [ nixvim ];
sessionVariables.EDITOR = lib.mkForce (lib.getExe nixvim);
packages = [ neovim ];
sessionVariables.EDITOR = lib.mkForce (lib.getExe neovim);
};
};
}