DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: bc38c3133fc9ba73a53b30f7ffb158aa13cb63cc nix-arta/hosts/alice/hyprland.nix -rw-r--r-- 887 bytes
bc38c313Jonni Liljamo feat(roles/hyprland): take out accel_profile a month 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
38
{
  roles.hyprland.enable = true;

  hm = {
    wayland.windowManager.hyprland.settings = {
      monitor = [
        "DP-2,3840x2160@60,0x0,1"
        "DP-1,2560x1440@59,3840x0,1"
        "HDMI-A-1,1920x1080@60,6400x0,1,transform,1"
      ];

      workspace = [
        "1,monitor:DP-1,persistent:1"
        "2,monitor:DP-1"
        "3,monitor:DP-1"
        "4,monitor:DP-1"
        "5,monitor:DP-1"
        "6,monitor:DP-2,persistent:1"
        "7,monitor:HDMI-A-1,persistent:1"
      ];
    };

    programs.wpaperd.settings = {
      DP-2 = {
        path = "/home/skye/Nextcloud/Wallpapers/forest";
        duration = "15m";
      };
      DP-1 = {
        path = "/home/skye/Nextcloud/Wallpapers/minimalgals";
        duration = "15m";
      };
      HDMI-A-1 = {
        path = "/home/skye/Nextcloud/Wallpapers/sailormoonmobile";
        duration = "15m";
      };
    };
  };
}