Files
nix/home/common/programs/hyprland/default.nix
T
Miguel Palhas 0a82392422 removing avizo
2024-11-03 16:51:42 +00:00

167 lines
4.1 KiB
Nix

{ config, pkgs, ... }:
let
rofiLaunchers = import ../../../pkgs/rofi-launchers/package.nix { };
in
{
imports = [
./rofi.nix
./dunst.nix
./cursor.nix
];
home.packages = with pkgs; [
hyprcursor
pamixer
hyprshot
hyprpanel
];
home.sessionVariables = {
ELECTRON_OZONE_PLATFORM_HINT = "auto";
};
wayland.windowManager.hyprland = {
enable = true;
settings = {
decoration = {
blur = {
enabled = "yes";
size = 30;
passes = 1;
new_optimizations = "on";
};
drop_shadow = "yes";
shadow_range = 2;
shadow_render_power = 1;
};
input = {
kb_layout = "us";
kb_options = "ctrl:nocaps";
follow_mouse = 1;
repeat_delay = 150;
repeat_rate = 25;
touchpad = {
natural_scroll = "yes";
};
numlock_by_default = "true";
};
cursor = {
no_hardware_cursors = "yes";
};
general = {
gaps_in = 2;
gaps_out = 0;
};
animations = {
bezier = "easeOutQuad, 0.5, 1, 0.89, 1";
animation = [
"windows, 1, 4, easeOutQuad"
"windowsMove, 1, 1, easeOutQuad"
"windowsOut, 1, 4, default, popin 80%"
"border, 1, 4, default"
"borderangle, 1, 4, default"
"fade, 1, 4, default"
"workspaces, 1, 3, default"
];
};
dwindle = {
preserve_split = "yes";
no_gaps_when_only = true;
};
master = {
orientation = "center";
no_gaps_when_only = true;
};
env = [
"HYPRCURSOR_THEME, rose-pine-hyprcursor"
"HYPRCURSOR_SIZE, 24"
];
"exec-once" = [
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
"hyprpanel"
];
windowrulev2 = [
# imv
"float, class:imv"
"move cursor -50% -50%, class:imv"
# bluetooth
"float, class:blueman-manager"
"move cursor -50% -50%, class:blueman-manager"
"size 600 400, class:blueman-manager"
# pavucontrol
"float, class:pavucontrol"
"move cursor -50% -50%, class:pavucontrol"
"size 600 600, class:pavucontrol"
];
"$mod" = "SUPER";
bind = [
"$mod, t, exec, kitty"
"$mod, e, exec, thunar"
"$mod, v, togglefloating"
"$mod, q, killactive"
"$mod, f, fullscreen, 0"
"$mod SHIFT, f, fullscreen, 1"
# rofi
"$mod, space, exec, launcher_t2"
# printscreen
", Print, exec, hyprshot -m region --output-folder ~/screenshots"
"SHIFT, Print, exec, hyprshot -m window --output-folder ~/screenshots"
# move focus with mod + arrows
"$mod, h, movefocus, l"
"$mod, j, movefocus, d"
"$mod, k, movefocus, u"
"$mod, l, movefocus, r"
# Switch workspaces with mod + [0-9]
"$mod, 1, workspace, 1"
"$mod, 2, workspace, 2"
"$mod, 3, workspace, 3"
"$mod, 3, workspace, 3"
"$mod, 4, workspace, 4"
"$mod, 5, workspace, 5"
"$mod, 6, workspace, 6"
# Move active window to a workspace with mod + SHIFT + [0-9]
"$mod SHIFT, 1, movetoworkspace, 1"
"$mod SHIFT, 2, movetoworkspace, 2"
"$mod SHIFT, 3, movetoworkspace, 3"
"$mod SHIFT, 4, movetoworkspace, 4"
"$mod SHIFT, 5, movetoworkspace, 5"
"$mod SHIFT, 6, movetoworkspace, 6"
# Scroll through existing workspaces with mod + scroll
"$mod, mouse_down, workspace, e+1"
"$mod, mouse_up, workspace, e-1"
# media
", XF86AudioRaiseVolume, exec, volumectl -u up"
", XF86AudioLowerVolume, exec, volumectl -u down"
", XF86AudioMute, exec, volumectl toggle-mute"
", XF86AudioMicMute, exec, volumectl -m toggle-mute"
", XF86AudioNext, exec, playerctl next"
", XF86AudioPrev, exec, playerctl previous"
", XF86AudioPlay, exec, playerctl play-pause"
", XF86MonBrightnessUp, exec, lightctl up"
", XF86MonBrightnessDown, exec, lightctl down"
];
};
};
}