Rename app from nvim to nixvim
All checks were successful
/ check (push) Successful in 1m55s

This commit is contained in:
Oliver Davies 2025-06-21 14:01:04 +01:00
parent 3e4cc8eca6
commit f54d82ca22

View file

@ -43,7 +43,7 @@
inherit (pkgs) mkShell; inherit (pkgs) mkShell;
neovimWithConfig = inputs.nixvim.legacyPackages.${system}.makeNixvimWithModule { nixvim = inputs.nixvim.legacyPackages.${system}.makeNixvimWithModule {
inherit pkgs; inherit pkgs;
module = import ./modules/home-manager/coding/neovim/config; module = import ./modules/home-manager/coding/neovim/config;
@ -60,9 +60,9 @@
}; };
packages.${system} = { packages.${system} = {
default = mkShell { buildInputs = with pkgs; [ just ]; }; inherit nixvim;
nvim = neovimWithConfig; default = mkShell { buildInputs = with pkgs; [ just ]; };
}; };
formatter.${system} = pkgs.nixfmt-rfc-style; formatter.${system} = pkgs.nixfmt-rfc-style;