diff --git a/modules/neovim/lua/lazy_setup.lua b/modules/neovim/lua/lazy_setup.lua index 2abb3b7..4294456 100644 --- a/modules/neovim/lua/lazy_setup.lua +++ b/modules/neovim/lua/lazy_setup.lua @@ -28,4 +28,11 @@ require("lazy").setup({ }, }, }, + dev = { + path = "/mnt/internal/repos", + patterns = { + "nvim-ufo", + "nix-store.nvim", + }, + }, } --[[@as LazyConfig]]) diff --git a/modules/neovim/lua/plugins/nvim-ufo.lua b/modules/neovim/lua/plugins/nvim-ufo.lua index 72fdaf8..a72804a 100644 --- a/modules/neovim/lua/plugins/nvim-ufo.lua +++ b/modules/neovim/lua/plugins/nvim-ufo.lua @@ -1,6 +1,6 @@ ---@type LazySpec return { - "wizardlink/nvim-ufo", + "kevinhwang91/nvim-ufo", opts = { provider_selector = function(_, filetype, _) ---@type table diff --git a/shared/nixos/system.nix b/shared/nixos/system.nix index 8f22fe5..6102d20 100644 --- a/shared/nixos/system.nix +++ b/shared/nixos/system.nix @@ -56,14 +56,6 @@ # Enable CUPS to print documents. services.printing.enable = true; - # And the service that enables IPP Everywhere - services.avahi = { - enable = true; - nssmdns4 = true; - nssmdns6 = true; - openFirewall = true; - }; - # Enable the OpenSSH daemon. services.openssh = { enable = true;