{ pkgs, ... }: {
programs = {
command-not-found.enable = true;
home-manager.enable = true;
bat = {
enable = true;
};
less = {
direnv = {
enableZshIntegration = true;
thefuck = {
eza = {
enableAliases = true;
git = true;
icons = true;
yazi = {
ssh = {
package = pkgs.openssh;
matchBlocks = {
"git-ssh.sense-t.eu.org" = {
hostname = "gitea.default";
"nas" = {
hostname = "192.168.1.25";
user = "rouji";
port = 2334;
"vps" = {
hostname = "wetofu.me";
user = "login";
go = {
goPath = ".local/go";
git = {
userName = "Sense T";
userEmail = "me@sense-t.eu.org";
ignores = [
".DS_Store"
"*~"
"*.swp"
];
vim = {
defaultEditor = true;
zsh = {
enableAutosuggestions = true;
syntaxHighlighting.enable = true;
enableVteIntegration = true;
oh-my-zsh = {
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "pip" "npm" "yarn" "vscode" "rust" ];
theme = "fishy";
profileExtra = ''
source .profile
'';
}