Compare commits

...

2 commits

Author SHA1 Message Date
Alexandre Cavalheiro S. Tiago da Silva 3f4728de40
feat(shared/nixos): add avahi service to enable ipp everywhere 2025-03-15 12:35:06 -03:00
Alexandre Cavalheiro S. Tiago da Silva 2501f0b8a4
fix(neovim)!: remove lazy.nvim dev options and change nvim-ufo url
This was bad, it relies on a path only one of my machines has access to.

Updated `nvim-ufo` to use my fork until my merge is accepted (or not).
2025-03-15 12:35:06 -03:00
3 changed files with 9 additions and 8 deletions

View file

@ -28,11 +28,4 @@ require("lazy").setup({
},
},
},
dev = {
path = "/mnt/internal/repos",
patterns = {
"nvim-ufo",
"nix-store.nvim",
},
},
} --[[@as LazyConfig]])

View file

@ -1,6 +1,6 @@
---@type LazySpec
return {
"kevinhwang91/nvim-ufo",
"wizardlink/nvim-ufo",
opts = {
provider_selector = function(_, filetype, _)
---@type table<string, UfoProviderEnum | UfoProviderEnum[]>

View file

@ -56,6 +56,14 @@
# 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;