41 lines
978 B
Nix
41 lines
978 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../common/home.nix ];
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
programs.zsh = {
|
|
localVariables = {
|
|
PROMPT = ''
|
|
╭─(%F{green}%B%n@%m%f%b)──(%F{blue}%B%50<...<%5~%<<%b%f)──(%B%?%b)
|
|
╰─(%B%j%b%# '';
|
|
};
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
settings = {
|
|
"$col_accentdark" = "rgb(00ff00)";
|
|
"$col_accentlight" = "rgb(80ff80)";
|
|
"$col_inactive" = "rgba(80808040)";
|
|
"$col_urgent" = "rgb(ffd966)";
|
|
|
|
animations = { enabled = false; };
|
|
decoration = {
|
|
rounding = 10;
|
|
active_opacity = 1.0;
|
|
inactive_opacity = 1.0;
|
|
fullscreen_opacity = 1.0;
|
|
drop_shadow = false;
|
|
dim_inactive = false;
|
|
blur.enabled = false;
|
|
};
|
|
gestures.workspace_swipe = true;
|
|
input.touchpad = {
|
|
disable_while_typing = false;
|
|
natural_scroll = true;
|
|
};
|
|
misc.animate_manual_resizes = false;
|
|
};
|
|
};
|
|
}
|