This commit is contained in:
iofq 2023-05-26 06:05:44 -05:00
parent 482ec8e00a
commit b2489ca8f0
3 changed files with 18 additions and 11 deletions

View file

@ -32,7 +32,6 @@
};
dependancies = with pkgs; [
ripgrep
lazygit
];
full-dependancies = with pkgs; [
gopls
@ -85,6 +84,9 @@
apps.full = flake-utils.lib.mkApp {
drv = packages.full; name = "neovim"; exePath = "/bin/nvim";
};
apps.minimal = flake-utils.lib.mkApp {
drv = packages.minimal; name = "neovim"; exePath = "/bin/nvim";
};
apps.default = apps.full;
packages.default = packages.full;
});