nixos-config/ahrc-pc/home.nix

32 lines
713 B
Nix

{ config, pkgs, ... }:
{
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 = {
"$col_accentdark" = "rgb(9933ff)";
"$col_accentlight" = "rgb(d966ff)";
"$col_inactive" = "rgba(80808080)";
animations.enabled = true;
decoration = {
inactive_opacity = 0.9;
drop_shadow = true;
blur.enabled = true;
};
gestures.workspace_swipe = false;
misc.animate_manual_resizes = true;
};
};
}