diff --git a/systems/modules/home/backgrounds/nix.png b/systems/modules/home/backgrounds/nix.png new file mode 100644 index 0000000..55b98e3 Binary files /dev/null and b/systems/modules/home/backgrounds/nix.png differ diff --git a/systems/modules/home/wm/hyprland.nix b/systems/modules/home/wm/hyprland.nix index 6805c0c..c71c01e 100644 --- a/systems/modules/home/wm/hyprland.nix +++ b/systems/modules/home/wm/hyprland.nix @@ -27,6 +27,7 @@ in settings = { ### MONITOR monitor = [ + "DP-3,2440x1440,auto,1" ",preferred,auto,1" ]; diff --git a/systems/modules/home/wm/hyprpaper.nix b/systems/modules/home/wm/hyprpaper.nix index f289901..c9a9805 100644 --- a/systems/modules/home/wm/hyprpaper.nix +++ b/systems/modules/home/wm/hyprpaper.nix @@ -3,6 +3,7 @@ let wallpaper = builtins.toString ../backgrounds/monkey.jpg; wallpaper2 = builtins.toString ../backgrounds/bird.jpg; + wallpaper3 = builtins.toString ../backgrounds/nix.png; in { services.hyprpaper = { @@ -12,10 +13,10 @@ in preload = [ wallpaper wallpaper2 + wallpaper3 ]; wallpaper = [ - "DP-2,${wallpaper2}" - ",${wallpaper}" + ",${wallpaper3}" ]; }; };