DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 7f535b7ca8492529945ef42f370cc9d8c8e4331c nix-arta/hosts/arwen/hyprland.nix -rw-r--r-- 645 bytes
7f535b7cJonni Liljamo feat: move proxy 9 days ago
                                                                                
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
{
  roles.hyprland.enable = true;

  hm = {
    wayland.windowManager.hyprland.settings = {
      general = {
        border_size = 1;
        gaps_in = 2;
        gaps_out = 2;
      };

      decoration = {
        rounding = false;
        drop_shadow = false;
        blur = {
          enabled = false;
        };
      };

      animations = {
        enabled = false;
        first_launch_animation = false;
      };

      monitor = [
        "eDP-1,1920x1080@60,0x0,1"
      ];
    };

    programs.wpaperd.settings = {
      eDP-1 = {
        path = "/home/skye/wallpapers/middleearth";
        duration = "5m";
      };
    };
  };
}