initial commit
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 3s

This commit is contained in:
sid 2026-02-23 20:34:35 +01:00
commit 95a533c876
451 changed files with 18255 additions and 0 deletions

View file

@ -0,0 +1,56 @@
{ config, lib, ... }:
let
cfg = config.wayland.windowManager.hyprland;
inherit (builtins) toString;
inherit (lib) mkDefault;
in
{
# Do not add binds here. Use `./binds/default.nix` instead.
"$mod" = cfg.modifier;
windowrule = [
"center, floating:1, not class:^(Gimp)$, not class:^(steam)$"
"float, title:^(Open|Save) Files?$"
"noborder, onworkspace:w[t1]"
"bordersize ${toString cfg.settings.general.border_size}, floating:1"
# https://wiki.hyprland.org/Useful-Utilities/Screen-Sharing/#xwayland
"opacity 0.0 override, class:^(xwaylandvideobridge)$"
"noanim, class:^(xwaylandvideobridge)$"
"noinitialfocus, class:^(xwaylandvideobridge)$"
"maxsize 1 1, class:^(xwaylandvideobridge)$"
"noblur, class:^(xwaylandvideobridge)$"
];
# Layouts
general.layout = mkDefault "master";
master = {
mfact = mkDefault 0.5;
new_status = mkDefault "master";
new_on_top = mkDefault true;
};
input.kb_layout = mkDefault "de";
xwayland = {
force_zero_scaling = mkDefault true;
};
misc = {
disable_hyprland_logo = mkDefault true;
force_default_wallpaper = mkDefault 0;
};
# Styling
animations.enabled = mkDefault false;
decoration = {
blur.enabled = mkDefault false;
shadow.enabled = mkDefault false;
};
general = {
resize_on_border = mkDefault true;
border_size = mkDefault 2;
};
}