Refactor flake.nix: update homeManagerModules output and modernize nvim app metadata

This commit is contained in:
2026-06-22 23:43:00 +02:00
parent a3359274b6
commit c91bb0df4b
2 changed files with 15 additions and 3 deletions
+10
View File
@@ -22,10 +22,20 @@ in {
apps.${system}.nvim = {
type = "app";
program = "${nvimConfig.neovim}/bin/nvim";
meta = {
description = "Improved Vim-based text editor";
homepage = "https://neovim.io";
license = "Apache-2.0";
};
};
defaultApp.${system} = {
type = "app";
program = "${nvimConfig.neovim}/bin/nvim";
meta = {
description = "Improved Vim-based text editor";
homepage = "https://neovim.io";
license = "Apache-2.0";
};
};
homeManagerModules.nvim = {