83 lines
1.1 KiB
Nix
Raw Normal View History

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
lf
lazygit
nix-index
procs
progress
ripgrep
tldr
trash-cli
unimatrix
unzip
wttrbar
2024-11-14 12:17:43 +01:00
wireguard-tools
2024-11-07 10:50:13 +01:00
#yazi
2024-10-20 00:30:58 +02:00
zellij-ps
zip
];
}