2024-10-20 00:30:58 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./fish.nix
|
|
|
|
./fzf.nix
|
|
|
|
./neofetch.nix
|
|
|
|
./secrets.nix
|
|
|
|
./starship.nix
|
|
|
|
./zellij.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
programs.zoxide = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.neovim = {
|
|
|
|
enable = true;
|
|
|
|
defaultEditor = true;
|
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
vimdiffAlias = true;
|
|
|
|
withNodeJs = true;
|
|
|
|
withPython3 = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.bat = {enable = true;};
|
|
|
|
|
|
|
|
programs.eza = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
extraOptions = ["-l" "--icons" "--git" "-a"];
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.lf = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
preview = true;
|
|
|
|
drawbox = true;
|
|
|
|
hidden = true;
|
|
|
|
icons = true;
|
|
|
|
theme = "Dracula";
|
|
|
|
previewer = "bat";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
alejandra
|
|
|
|
bc
|
|
|
|
comma
|
|
|
|
coreutils
|
|
|
|
devenv
|
|
|
|
direnv
|
|
|
|
fabric-ai
|
|
|
|
fd
|
|
|
|
gcc
|
|
|
|
go
|
|
|
|
htop
|
|
|
|
httpie
|
|
|
|
jq
|
|
|
|
just
|
|
|
|
lazygit
|
2024-11-27 11:45:16 +01:00
|
|
|
llm
|
|
|
|
lf
|
2024-10-20 00:30:58 +02:00
|
|
|
nix-index
|
|
|
|
procs
|
|
|
|
progress
|
|
|
|
ripgrep
|
2024-11-25 14:59:34 +01:00
|
|
|
rocmPackages.rocm-smi
|
|
|
|
rocmPackages.rocminfo
|
2024-10-20 00:30:58 +02:00
|
|
|
tldr
|
|
|
|
trash-cli
|
|
|
|
unimatrix
|
|
|
|
unzip
|
2025-01-08 08:58:29 +01:00
|
|
|
vulkan-tools
|
2024-10-20 00:30:58 +02:00
|
|
|
wttrbar
|
2024-11-14 12:17:43 +01:00
|
|
|
wireguard-tools
|
2024-11-16 19:58:59 +01:00
|
|
|
yazi
|
2024-10-20 00:30:58 +02:00
|
|
|
zellij-ps
|
|
|
|
zip
|
|
|
|
];
|
|
|
|
}
|