workmac: start using some llm coding agents

This commit is contained in:
Trolli Schmittlauch 2025-08-29 10:17:57 +02:00
parent fd190dbdcd
commit b1444e8967
2 changed files with 30 additions and 6 deletions

View file

@ -12,6 +12,7 @@ let
unstable = inputs.nixos-unstable.legacyPackages.${system};
in
{
imports = [ ./modules/llm.nix ];
schmittlauch.packages = {
graphics = true;
@ -129,7 +130,12 @@ in
ThrottleInterval = 60;
};
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "1password-cli" ];
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"1password-cli"
"claude-code"
]; # nixpkgs.config merging is unfortunately broken
home.stateVersion = "22.05";
}