all repos — nixfiles @ 82ff4bb086e29e3cdac7fb35230a2e26c325bae4

System and user configuration, managed by nix and home-manager

remove aider configuration

Alan Pearce
commit

82ff4bb086e29e3cdac7fb35230a2e26c325bae4

parent

bcab7e94da21599fce8140c6923be0ae999313f9

2 files changed, 0 insertions(+), 33 deletions(-)

changed files
M user/hosts/marvin.nixuser/hosts/marvin.nix
@@ -15,7 +15,6 @@ ../settings/git.nix
../settings/nixpkgs.nix ../settings/ssh.nix ../settings/tabnine.nix - ../settings/aider.nix ../settings/workstation.nix ../settings/user-interface.nix ../settings/nix.nix
D user/settings/aider.nix
@@ -1,32 +0,0 @@
-{ - pkgs, - ... -}: -{ - home.file.".aider.conf.yml" = - let - yaml = pkgs.formats.yaml { }; - in - { - source = ( - yaml.generate "aider.conf.yml" { - alias = [ - "general:ollama_chat/gemma3:27b" - "editor:openrouter/openai/gpt-4o-mini" - ]; - model = "editor"; - editor-model = "editor"; - light-mode = true; - gitignore = false; - check-update = false; - attribute-author = false; - attribute-committer = false; - analytics-disable = true; - } - ); - }; - - programs.git.ignores = [ - ".aider.*" - ]; -}