diff options
| author | adikro <adikro@disroot.org> | 2025-11-14 18:29:31 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-11-14 18:29:31 +0100 |
| commit | 4e3c8eff1407291ce64254d3eeed8de5f9677a0b (patch) | |
| tree | f25857ce71e3d16460c3677274f0b3974cb4f3ac /home/wayland/hyprland/hyprland.nix | |
| parent | 97e4587c34fc860dcad69d6f7b1c60dbc798e566 (diff) | |
changed nixvim config a bit and added some fonts
Diffstat (limited to 'home/wayland/hyprland/hyprland.nix')
| -rw-r--r-- | home/wayland/hyprland/hyprland.nix | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/home/wayland/hyprland/hyprland.nix b/home/wayland/hyprland/hyprland.nix new file mode 100644 index 0000000..fe85283 --- /dev/null +++ b/home/wayland/hyprland/hyprland.nix @@ -0,0 +1,45 @@ +{ ... }: +{ + imports = [ + ./binds.nix + ]; + + wayland.windowManager.hyprland = { + enable = true; + settings = { + + general = { + gaps_in = 6; + gaps_out = 16; + border_size = 2; + }; + + decoration = { + rounding = 12; + }; + + "$mod" = "ALT"; + monitor = [ + "DP-1,2560x1440@240,0x0,1,vrr,0" + ]; + workspace = [ + "1,monitor:DP-1,default:true" + "2,monitor:DP-1" + "3,monitor:DP-1" + "4,monitor:DP-1" + "5,monitor:DP-1" + ]; + + input = { + accel_profile = "flat"; + sensitivity = -0.6; + repeat_rate = 45; + repeat_delay = 500; + }; + + animations = { + enabled = false; + }; + }; + }; +} |
