2023-04-12 08:25:36 +00:00
|
|
|
{ pkgs, ... }: {
|
2022-12-30 12:05:46 +00:00
|
|
|
imports = [
|
|
|
|
./bat.nix
|
|
|
|
./fish.nix
|
|
|
|
./neofetch.nix
|
2023-02-05 13:36:38 +00:00
|
|
|
./secrets.nix
|
2022-12-30 12:05:46 +00:00
|
|
|
./starship.nix
|
2022-12-31 12:07:15 +00:00
|
|
|
./tmux.nix
|
2022-12-30 12:05:46 +00:00
|
|
|
];
|
2023-04-26 04:43:46 +00:00
|
|
|
programs.zoxide = {
|
2023-04-12 08:25:36 +00:00
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
};
|
2023-04-26 04:43:46 +00:00
|
|
|
programs.fzf = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
tmux.enableShellIntegration = true;
|
|
|
|
};
|
2022-12-30 12:05:46 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
bc
|
|
|
|
comma
|
2023-06-17 15:03:03 +00:00
|
|
|
coreutils
|
2023-01-09 15:03:01 +00:00
|
|
|
direnv
|
2022-12-30 12:05:46 +00:00
|
|
|
exa
|
|
|
|
fd
|
2023-02-01 11:38:23 +00:00
|
|
|
htop
|
2022-12-30 12:05:46 +00:00
|
|
|
httpie
|
|
|
|
jq
|
2023-04-26 04:43:46 +00:00
|
|
|
neovim
|
2022-12-30 12:05:46 +00:00
|
|
|
procs
|
|
|
|
progress
|
|
|
|
ripgrep
|
|
|
|
tldr
|
|
|
|
trash-cli
|
|
|
|
tree
|
2023-02-01 11:38:23 +00:00
|
|
|
unzip
|
|
|
|
zip
|
2022-12-30 12:05:46 +00:00
|
|
|
];
|
|
|
|
}
|