Refactor flake.nix and home.nix: modernize homeManagerModules output and comment out secrets import

This commit is contained in:
2026-06-23 16:37:01 +02:00
parent c91bb0df4b
commit 0205b8fe89
5 changed files with 21 additions and 25 deletions
+17 -15
View File
@@ -19,22 +19,24 @@
in {
packages.${system}.nvim = nvimConfig.neovim;
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";
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";
default = {
type = "app";
program = "${nvimConfig.neovim}/bin/nvim";
meta = {
description = "Improved Vim-based text editor";
homepage = "https://neovim.io";
license = "Apache-2.0";
};
};
};