Skip to content

Commit

Permalink
update nix
Browse files Browse the repository at this point in the history
  • Loading branch information
stehessel committed May 9, 2024
1 parent e2662ae commit 27be7b4
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 51 deletions.
90 changes: 42 additions & 48 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions pkgs/editor/neovim/config/lua/lsp/r_ls.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
return {
setup = function(on_attach, capabilities, flags)
require("lspconfig").r_language_server.setup({
on_attach = on_attach,
capabilities = capabilities,
flags = flags,
})
end,
}
1 change: 1 addition & 0 deletions pkgs/editor/neovim/config/lua/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ return {
"marksman",
"nixd",
"pyright",
"r_ls",
-- "sqls",
"tailwindcss",
"taplo",
Expand Down
2 changes: 1 addition & 1 deletion pkgs/utility/broot/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_: {
programs.broot = {
enable = true;
enable = false;
};
}
6 changes: 5 additions & 1 deletion systems/darwin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,22 @@
"nrlquaker/createzap"
];
brews = [
"apache-arrow"
"coreutils"
"fribidi"
"gcc"
"gdal"
"go-task"
"harfbuzz"
"libgit2"
"libtiff"
"llvm"
"pkg-config"
"prometheus"
"r"
"skhd"
"yabai"
"z3"
];
casks = [
"adobe-acrobat-reader"
Expand Down Expand Up @@ -202,7 +206,7 @@
Hour = 12;
};
};
package = pkgs.nixVersions.unstable;
package = pkgs.nixVersions.latest;
settings = {
auto-optimise-store = true;
substituters = [
Expand Down
2 changes: 1 addition & 1 deletion systems/nixos/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
automatic = true;
dates = "weekly";
};
package = pkgs.nixVersions.unstable;
package = pkgs.nixVersions.latest;
settings = {
auto-optimise-store = true;
substituters = [
Expand Down

0 comments on commit 27be7b4

Please sign in to comment.