Update to nixos 26.05

This commit is contained in:
Martin Pander
2026-06-19 13:14:58 +02:00
parent 1e0bc5d2b8
commit 3c42fdedf8
6 changed files with 33 additions and 28 deletions

View File

@@ -78,7 +78,7 @@ in
(nvim-treesitter.withPlugins (p: [ p.awk p.bash p.c p.c_sharp p.cpp p.css p.diff p.dockerfile p.doxygen p.git_config p.gitcommit p.go p.gomod p.gosum p.gotmpl p.helm p.haskell p.html p.http p.java p.javascript p.json p.latex p.lua p.markdown p.markdown_inline p.matlab p.nix p.printf p.python p.regex p.rust p.sql p.strace p.supercollider p.svelte p.swift p.terraform p.tmux p.toml p.typescript p.vim p.xml p.yaml p.zig ]))
];
extraLuaConfig = ''
initLua = ''
_G.is_work = ${if cfg.workMode then "true" else "false"}
_G.is_mac = ${if pkgs.stdenv.isDarwin then "true" else "false"}
_G.is_private_nixos = ${if !cfg.workMode && pkgs.stdenv.isLinux then "true" else "false"}
@@ -88,6 +88,9 @@ in
require('plugins')
require('filetype')
'';
withRuby = false;
withPython3 = false;
};
# Allow for editing the lua modules without a nix rebuild