summaryrefslogtreecommitdiff
path: root/home/wayland/hyprland/hyprland.nix
blob: fe85283b626d8765d2e7e88669655e4c1b5ec1f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
      };
    };
  };
}