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

@@ -39,7 +39,7 @@
enable = true;
enableDefaultConfig = false;
includes = [ "config.local" ];
matchBlocks = {
settings = {
"*" = {
addKeysToAgent = "yes";
};

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

View File

@@ -41,6 +41,7 @@ in
apiKey = config.sops.placeholder.langdock_api_key;
};
models = {
"gpt-5.5" = { name = "GPT-5.5"; };
"gpt-5.4" = { name = "GPT-5.4"; };
"gpt-5.4-mini" = { name = "GPT-5.4 mini"; };
};
@@ -51,6 +52,7 @@ in
apiKey = config.sops.placeholder.langdock_api_key;
};
models = {
"claude-opus-4-8-default" = { name = "Opus 4.8"; };
"claude-opus-4-7-default" = { name = "Opus 4.7"; };
"claude-opus-4-6-default" = { name = "Opus 4.6"; };
"claude-sonnet-4-6-default" = { name = "Sonnet 4.6"; };

View File

@@ -63,7 +63,7 @@
home.packages = with pkgs; [
taskwarrior-tui
unstable.timewarrior
inputs.tasksquire.packages.${pkgs.system}.default
inputs.tasksquire.packages.${pkgs.stdenv.hostPlatform.system}.default
];
home.shellAliases = lib.mkMerge [ {