2024-03-24 23:39:49 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2024-05-09 20:11:22 +02:00
|
|
|
imports = [
|
2024-05-10 00:47:54 +02:00
|
|
|
../../modules/home-manager/terminal/zsh.nix
|
|
|
|
../../modules/home-manager/terminal/git.nix
|
|
|
|
../../modules/home-manager/terminal/zellij
|
|
|
|
../../modules/home-manager/terminal/ssh-agent.nix
|
|
|
|
../../modules/home-manager/terminal/direnv.nix
|
2024-05-17 00:49:31 +02:00
|
|
|
../../modules/home-manager/terminal/btop.nix
|
2024-05-09 20:11:22 +02:00
|
|
|
];
|
2024-03-24 23:39:49 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
sshfs
|
|
|
|
just
|
|
|
|
fd
|
|
|
|
sd
|
|
|
|
curl
|
|
|
|
];
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
PIPENV_VENV_IN_PROJECT = 1;
|
|
|
|
POETRY_VIRTUALENVS_IN_PROJECT = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
home.sessionPath = [
|
|
|
|
"$HOME/.nix-profile/bin/"
|
|
|
|
"$HOME/.local/bin/"
|
|
|
|
"$HOME/.cargo/bin/"
|
|
|
|
"/opt/"
|
|
|
|
];
|
|
|
|
|
|
|
|
home.shellAliases = {
|
|
|
|
# doc2pdf = "loffice --convert-to-pdf --headless *.docx";
|
|
|
|
sshmnt = "sshfs -o idmap=user,compression=no,reconnect,follow_symlinks,dir_cache=yes,ServerAliveInterval=15";
|
|
|
|
};
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
yazi.enable = true;
|
|
|
|
fzf.enable = true;
|
|
|
|
ripgrep.enable = true;
|
|
|
|
bat.enable = true;
|
2024-04-06 23:27:57 +02:00
|
|
|
man.enable = true;
|
2024-03-24 23:39:49 +01:00
|
|
|
};
|
|
|
|
}
|