Major changes

This commit is contained in:
2025-07-13 15:44:20 -03:00
parent 3d0222abe9
commit d7b5343864
19 changed files with 276 additions and 130 deletions

View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
aider-chat-full
];
}

View File

@@ -1,6 +1,7 @@
# FIXME(starter): customize your bash preferences here
{
imports = [
./aider.nix
./atuin.nix
./autojump.nix
./bash.nix
@@ -11,6 +12,7 @@
./direnv.nix
./eza.nix
./fish.nix
./lazydocker.nix
./lazygit.nix
./rip.nix
./tldr.nix

View File

@@ -0,0 +1,7 @@
{
programs.lazydocker.enable = true;
home.shellAliases = {
ldocker = "lazydocker";
};
}