chore: upgrade to NixOS 23.05
This commit is contained in:
parent
028e515ec9
commit
e77fc1fe1d
16 changed files with 44 additions and 49 deletions
home
|
@ -53,16 +53,15 @@ in {
|
|||
private = {
|
||||
id = 0;
|
||||
extraConfig = sharedExtraConfig;
|
||||
# extensions = commonExtensions ++ (with firefox-addons; [ metamask ]);
|
||||
extensions = commonExtensions ++ (with firefox-addons; [ metamask ]);
|
||||
};
|
||||
work = {
|
||||
id = 1;
|
||||
extraConfig = sharedExtraConfig;
|
||||
# extensions = commonExtensions
|
||||
# ++ (with firefox-addons; [ react-devtools reduxdevtools ]);
|
||||
extensions = commonExtensions
|
||||
++ (with firefox-addons; [ react-devtools reduxdevtools ]);
|
||||
};
|
||||
};
|
||||
extensions = commonExtensions ++ (with firefox-addons; [ metamask ]);
|
||||
};
|
||||
|
||||
home.packages = let
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
programs.helix = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.helix;
|
||||
languages = [
|
||||
languages.language = [
|
||||
{
|
||||
name = "rust";
|
||||
config.rust-analyzer = {
|
||||
|
|
|
@ -9,7 +9,7 @@ require("nvim-lightbulb").setup({
|
|||
LspFormat = function(bufnr)
|
||||
vim.lsp.buf.format({
|
||||
filter = function(client)
|
||||
return not vim.tbl_contains({ "tsserver", "jsonls", "rnix" }, client.name)
|
||||
return not vim.tbl_contains({ "tsserver", "jsonls" }, client.name)
|
||||
end,
|
||||
bufnr,
|
||||
timeout_ms = 5000,
|
||||
|
@ -123,7 +123,7 @@ local runtime_path = vim.split(package.path, ';')
|
|||
table.insert(runtime_path, "lua/?.lua")
|
||||
table.insert(runtime_path, "lua/?/init.lua")
|
||||
|
||||
config.sumneko_lua.setup {
|
||||
config.lua_ls.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
settings = {
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
require("neorg").setup {
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.norg.concealer"] = {},
|
||||
["core.norg.completion"] = {
|
||||
["core.concealer"] = {},
|
||||
["core.completion"] = {
|
||||
config = {
|
||||
engine = "nvim-cmp",
|
||||
},
|
||||
},
|
||||
["core.norg.dirman"] = {
|
||||
["core.dirman"] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
work = "~/notes/work",
|
||||
|
@ -15,12 +15,7 @@ require("neorg").setup {
|
|||
},
|
||||
},
|
||||
},
|
||||
["core.norg.qol.toc"] = {},
|
||||
["core.gtd.base"] = {
|
||||
config = {
|
||||
workspace = "home",
|
||||
},
|
||||
},
|
||||
["core.qol.toc"] = {},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
tabbed
|
||||
|
||||
# work
|
||||
teams
|
||||
teams-for-linux
|
||||
|
||||
# dev
|
||||
postman
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
# kitty/neovim don't play well with multi-width emojis
|
||||
nix_shell.symbol = " ";
|
||||
};
|
||||
# @TODO broken in nixos-22.11
|
||||
enableNushellIntegration = false;
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue