2023-11-29 10:18:56 +00:00
|
|
|
{pkgs, ...}: {
|
|
|
|
imports = [
|
|
|
|
../../../../applications/git
|
|
|
|
../../../../applications/starship
|
|
|
|
../../../../applications/eza
|
|
|
|
../../../../applications/skim
|
|
|
|
../../../../applications/bat
|
|
|
|
];
|
|
|
|
|
|
|
|
home.shellAliases = {
|
|
|
|
".." = "cd ..";
|
|
|
|
"farsee" = "curl -F 'c=@-' 'https://fars.ee/'"; # pb
|
|
|
|
|
|
|
|
# proxy
|
|
|
|
"setproxy" = let
|
|
|
|
proxy = "http://127.0.0.1:7890/";
|
|
|
|
in "export http_proxy=${proxy} https_proxy=${proxy} ftp_proxy=${proxy} rsync_proxy=${proxy}";
|
|
|
|
"unsetproxy" = "set -e http_proxy https_proxy all_proxy"; # fish syntax (?)
|
2023-11-14 03:22:17 +00:00
|
|
|
};
|
2023-11-29 10:18:56 +00:00
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
wget
|
|
|
|
fd
|
|
|
|
hyperfine
|
|
|
|
];
|
2023-11-14 03:22:17 +00:00
|
|
|
programs = {
|
|
|
|
tealdeer.enable = true;
|
|
|
|
zoxide.enable = true;
|
|
|
|
bottom.enable = true;
|
|
|
|
joshuto.enable = true;
|
|
|
|
ripgrep.enable = true;
|
|
|
|
};
|
|
|
|
}
|