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 = perSystem =
{ inputs', pkgs, ... }: { inputs', pkgs, ... }:
{ {
packages.nixvim = inputs'.nixvim.legacyPackages.makeNixvimWithModule { packages.neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
inherit pkgs; inherit pkgs;
module = config.flake.modules.nixvim.custom; module = config.flake.modules.nixvim.custom;

View file

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