home/captive-browser: update chrome args to replace deprecated args

taken from https://github.com/FiloSottile/captive-browser/pull/32
This commit is contained in:
Trolli Schmittlauch 2025-08-29 10:16:09 +02:00
parent 57a2e3b839
commit 97e3a87d12
2 changed files with 27 additions and 2 deletions

13
home/modules/llm.nix Normal file
View file

@ -0,0 +1,13 @@
{
pkgs,
lib,
inputs,
config,
system,
...
}:
let myAider = pkgs.aider-chat.withOptional {withPlaywright = true; withBrowser = true; withHelp = true; withBedrock = false;};
in
{
home.packages = [ myAider ];
}