nixos-config/ahrc-pc/home.nix

32 lines
719 B
Nix
Raw Normal View History

2024-09-30 16:43:05 +02:00
{
imports = [ ../common/home.nix ];
home.stateVersion = "24.05";
programs.zsh = {
localVariables = {
PROMPT = ''
[%F{magenta}%B%n@%m%f%b][%F{blue}%B%50<...<%5~%<<%b%f][%B%?%b]
[%B%j%b%# '';
};
};
wayland.windowManager.hyprland = {
settings = {
2024-09-30 16:51:08 +02:00
"$col_accentdark" = "rgb(9933ff)";
"$col_accentlight" = "rgb(d966ff)";
"$col_inactive" = "rgba(80808080)";
2024-09-30 16:43:05 +02:00
animations.enabled = true;
decoration = {
inactive_opacity = 0.9;
drop_shadow = true;
blur.enabled = true;
};
2024-10-01 18:39:03 +02:00
input.kb_layout = "us";
2024-09-30 16:43:05 +02:00
gestures.workspace_swipe = false;
misc.animate_manual_resizes = true;
};
};
}