WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
Showing only changes of commit 3f8b9e8c83 - Show all commits

View file

@ -1,10 +1,10 @@
local M = {}
local opts = {mason = {}, lspconfig = {automatic_installation = true}}
Opts = {mason = {}, lspconfig = {automatic_installation = true}}
M.setup = function() require('mason').setup(opts.mason) end
M.setup = function() require('mason').setup(Opts.mason) end
M.lspconfig_setup =
function() require('mason-lspconfig').setup(opts.lspconfig) end
function() require('mason-lspconfig').setup(Opts.lspconfig) end
return M