nixos/share/home.nix

138 lines
3.2 KiB
Nix
Raw Normal View History

2024-06-27 20:37:20 +02:00
{
# initial version
home.stateVersion = "22.11";
# ZSH with good config
programs.zsh = {
# ZSH on
2024-06-27 20:37:20 +02:00
enable = true;
2024-06-27 23:19:37 +02:00
# we want completion
enableCompletion = true;
# we want suggestions of already typed stuff
autosuggestion.enable = true;
# we want nice command highlighting
syntaxHighlighting.enable = true;
# better history
history = {
# save timestamps
extended = true;
# kill dupes over full history
ignoreAllDups = true;
# don't share history between sessions
share = false;
};
2024-06-27 23:19:37 +02:00
2024-06-27 20:37:20 +02:00
# aliases
shellAliases = {
# system build/update/cleanup
2024-10-05 18:25:08 +02:00
update = "doas nixos-rebuild boot";
upgrade = "doas nixos-rebuild boot --upgrade";
updatenow = "doas nixos-rebuild switch";
upgradenow = "doas nixos-rebuild switch --upgrade";
gc = "doas nix-collect-garbage --delete-older-than 7d";
verify = "doas nix --extra-experimental-features nix-command store verify --all";
optimize = "doas nix --extra-experimental-features nix-command store optimise";
2024-06-27 20:37:20 +02:00
2024-07-02 22:38:56 +02:00
# list latest files last
ltr = "eza -l -s modified";
2024-06-27 20:37:20 +02:00
# ssh around in the local network
2024-07-04 18:45:33 +02:00
beta = "ssh beta.fritz.box";
betaroot = "ssh root@beta.fritz.box";
2024-07-06 22:37:22 +02:00
bsd = "ssh bsd.fritz.box";
bsdroot = "ssh root@bsd.fritz.box";
2024-06-27 20:37:20 +02:00
mac = "ssh mac.fritz.box";
macroot = "ssh root@mac.fritz.box";
2024-10-24 17:53:45 +02:00
miku = "ssh miku.fritz.box";
mikuroot = "ssh root@miku.fritz.box";
2024-06-27 20:37:20 +02:00
mini = "ssh mini.fritz.box";
miniroot = "ssh root@mini.fritz.box";
neko = "ssh neko.fritz.box";
nekoroot = "ssh root@neko.fritz.box";
};
};
2024-06-27 20:37:20 +02:00
# nice prompt
# https://starship.rs/config/
# https://draculatheme.com/starship
programs.starship = {
2024-06-27 20:37:20 +02:00
enable = true;
enableZshIntegration = true;
settings = {
2024-07-21 15:41:29 +02:00
command_timeout = 10000;
aws.style = "bold #ffb86c";
cmd_duration.style = "bold #f1fa8c";
directory.style = "bold #50fa7b";
hostname.style = "bold #ff5555";
git_branch.style = "bold #ff79c6";
git_status.style = "bold #ff5555";
username = {
format = "[$user]($style) on ";
style_user = "bold #bd93f9";
};
character = {
success_symbol = "[](bold #f8f8f2)";
error_symbol = "[](bold #ff5555)";
};
directory = {
truncation_length = 8;
truncate_to_repo = false;
};
};
2024-06-27 20:37:20 +02:00
};
# nice cd
programs.zoxide = {
enable = true;
enableZshIntegration = true;
2024-06-27 20:37:20 +02:00
options = [ "--cmd" "cd" ];
};
# integrate fuzzy search
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
2024-07-13 15:12:29 +02:00
# better completion
programs.carapace = {
enable = true;
enableZshIntegration = true;
2024-07-13 15:12:29 +02:00
};
2024-07-02 22:33:05 +02:00
# better ls, adds la and Co. aliases, too
programs.eza = {
enable = true;
enableZshIntegration = true;
};
2024-07-02 22:33:05 +02:00
# better cat
programs.bat = {
enable = true;
};
# better find
programs.fd = {
enable = true;
};
2024-07-21 16:46:22 +02:00
# file manager
programs.yazi = {
enable = true;
2024-07-29 18:23:05 +02:00
enableZshIntegration = true;
2024-07-21 16:46:22 +02:00
};
2024-06-27 20:37:20 +02:00
# https://github.com/nix-community/nix-direnv
programs.direnv = {
enable = true;
2024-07-29 18:23:05 +02:00
enableZshIntegration = true;
2024-06-27 20:37:20 +02:00
nix-direnv.enable = true;
};
}