82 lines
1.1 KiB
Nix
82 lines
1.1 KiB
Nix
![]() |
{
|
||
|
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
|
||
|
yazi
|
||
|
zellij-ps
|
||
|
zip
|
||
|
];
|
||
|
}
|