This commit is contained in:
Miguel Palhas
2025-04-04 16:53:42 +01:00
parent 3dd30db025
commit 629840f7e6
7 changed files with 25 additions and 139 deletions
+16
View File
@@ -0,0 +1,16 @@
{
lib,
config,
pkgs,
...
}:
{
home.packages = with pkgs; [
aider-chat
];
home.file.".aider.conf.yml".text = ''
code-theme: one-dark
auto-commits: false
'';
}
+2
View File
@@ -4,10 +4,12 @@
./zsh.nix
./neovim
./rust.nix
./elixir.nix
./nodejs.nix
./git
./solidity.nix
./dev.nix
./aider.nix
];
programs = {
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
elixir_1_18
];
}