Initial commit

This commit is contained in:
Dotfiles
2026-07-06 02:13:07 +00:00
commit 06cf1c1825
166 changed files with 5255 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
{ config, pkgs, ... }:
{
imports = [
./eza.nix
./starship.nix
./zoxide.nix
];
home.packages = with pkgs; [
bash
bat
fzf
fd
zoxide
ripgrep
neovim
];
programs.bash = {
enable = true;
shellAliases = {
ll = "eza -lah";
ls = "eza";
cat = "bat";
grep = "grep --color=auto";
};
historyControl = [
"ignoredups"
"ignorespace"
];
historySize = 10000;
initExtra = ''
eval "$(zoxide init bash)"
source ${pkgs.carapace}/share/bash/carapace.bash
export EDITOR=nvim
'';
};
}