2024-11-03 11:25:21 +00:00
|
|
|
{ config, pkgs, ... }:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-07-03 07:15:39 +01:00
|
|
|
imports = [
|
|
|
|
./git.nix
|
|
|
|
./ssh.nix
|
|
|
|
./starship.nix
|
2024-10-30 16:32:34 +00:00
|
|
|
./bottom.nix
|
|
|
|
./cava.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
];
|
2024-10-22 11:36:21 +01:00
|
|
|
home.shellAliases = {
|
2024-11-07 05:27:14 +00:00
|
|
|
sync-all = "sync-git; vdirsyncer sync; mbsync -a";
|
2024-10-30 07:51:28 +00:00
|
|
|
sync-and-shutdown = "sync-all && shutdown now";
|
2024-10-22 11:36:21 +01:00
|
|
|
protonup = "sudo wg-quick up protonvpn && sudo wg";
|
|
|
|
protondown = "sudo wg-quick down protonvpn";
|
2024-09-22 11:47:34 +01:00
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
programs = {
|
2024-09-01 12:58:42 +01:00
|
|
|
bash.enable = true;
|
2024-09-21 05:46:36 +01:00
|
|
|
carapace.enable = true;
|
2024-07-03 07:15:39 +01:00
|
|
|
fd.enable = true;
|
|
|
|
jq.enable = true;
|
|
|
|
ripgrep.enable = true;
|
2024-09-19 08:05:48 +01:00
|
|
|
bat = {
|
|
|
|
enable = true;
|
|
|
|
config.style = "plain,numbers,changes";
|
|
|
|
};
|
|
|
|
direnv = {
|
|
|
|
enable = true;
|
|
|
|
nix-direnv.enable = true;
|
|
|
|
};
|
|
|
|
eza = {
|
|
|
|
enable = true;
|
|
|
|
git = true;
|
|
|
|
icons = true;
|
|
|
|
extraOptions = [ "--octal-permissions" ];
|
|
|
|
};
|
|
|
|
fzf = {
|
|
|
|
enable = true;
|
|
|
|
defaultCommand = "${pkgs.fd}/bin/fd --type f";
|
|
|
|
changeDirWidgetCommand = "${pkgs.fd}/bin/fd --type d";
|
|
|
|
fileWidgetCommand = "${pkgs.fd}/bin/fd --type f";
|
|
|
|
};
|
2024-11-03 11:25:21 +00:00
|
|
|
hyfetch = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
preset = "rainbow";
|
|
|
|
mode = "rgb";
|
|
|
|
light_dark = config.stylix.polarity;
|
|
|
|
lightness = 0.4;
|
|
|
|
color_align = {
|
|
|
|
mode = "horizontal";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-09-19 08:05:48 +01:00
|
|
|
readline = {
|
|
|
|
enable = true;
|
|
|
|
variables = {
|
|
|
|
bell-style = "visible";
|
|
|
|
blink-matching-paren = "On";
|
|
|
|
colored-completion-prefix = "On";
|
|
|
|
colored-stats = "On";
|
|
|
|
completion-ignore-case = "On";
|
|
|
|
completion-map-case = "On";
|
|
|
|
editing-mode = "emacs";
|
|
|
|
expand-tilde = "On";
|
|
|
|
horizontal-scroll-mode = "On";
|
|
|
|
mark-directories = "On";
|
|
|
|
mark-symlinked-directories = "On";
|
|
|
|
visible-stats = "On";
|
|
|
|
};
|
|
|
|
};
|
2024-09-22 10:43:40 +01:00
|
|
|
zsh = {
|
|
|
|
enable = true;
|
|
|
|
enableCompletion = true;
|
|
|
|
autocd = true;
|
|
|
|
autosuggestion.enable = true;
|
|
|
|
defaultKeymap = "emacs";
|
|
|
|
syntaxHighlighting = {
|
|
|
|
enable = true;
|
|
|
|
highlighters = [
|
|
|
|
"brackets"
|
|
|
|
"cursor"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
historySubstringSearch.enable = true;
|
|
|
|
history = {
|
|
|
|
extended = true;
|
|
|
|
share = true;
|
|
|
|
ignoreDups = true;
|
|
|
|
ignoreAllDups = true;
|
|
|
|
ignoreSpace = true;
|
|
|
|
expireDuplicatesFirst = true;
|
|
|
|
};
|
|
|
|
initExtra = ''
|
|
|
|
## completion config and styling
|
|
|
|
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
|
|
|
|
zstyle ':completion:*' menu 'select=long-list'
|
|
|
|
|
|
|
|
## transient prompt
|
|
|
|
source ${./transient.zsh}
|
|
|
|
'';
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
};
|
|
|
|
}
|