Refactor flake.nix and home.nix: modernize homeManagerModules output and comment out secrets import
This commit is contained in:
+17
-15
@@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user