46 lines
846 B
Nix
46 lines
846 B
Nix
{
|
|
"$mod" = "SUPER";
|
|
general = {
|
|
border_size = 0;
|
|
gaps_in = 5;
|
|
gaps_out = 10;
|
|
layout = "dwindle";
|
|
resize_on_border = true;
|
|
};
|
|
|
|
snap = {
|
|
|
|
};
|
|
|
|
input = {
|
|
kb_layout = "de";
|
|
};
|
|
|
|
bind = builtins.concatLists [
|
|
[
|
|
"$mod, Q, exit"
|
|
"$mod, Return, exec, kitty"
|
|
"$mod, D, exec, wofi --show drun"
|
|
"$mod, F2, exec, firefox"
|
|
"$mod, c, killactive"
|
|
"$mod, f, fullscreen"
|
|
]
|
|
# Switch workspaces
|
|
(map (i: "$mod, ${builtins.toString i}, workspace, ${builtins.toString i}") [1 2 3 4 5 6 7 8 9])
|
|
(map (i: "$mod+SHIFT, ${builtins.toString i}, movetoworkspace, ${builtins.toString i}") [1 2 3 4 5 6 7 8 9])
|
|
];
|
|
|
|
decoration = {
|
|
shadow.enabled = false;
|
|
blur.enabled = true;
|
|
};
|
|
|
|
misc.disable_hyprland_logo = true;
|
|
|
|
cursor.inactive_timeout = 5;
|
|
|
|
ecosystem.no_update_news = true;
|
|
ecosystem.no_donation_nag = true;
|
|
|
|
}
|