[drew-desktop] Switch to wpaperd

This commit is contained in:
2025-03-31 18:16:07 -07:00
parent bec89ba571
commit a99b91994e
2 changed files with 18 additions and 37 deletions

View File

@@ -1,28 +0,0 @@
{ ... }:
{
services.hyprpaper = {
enable = true;
settings =
let
clouds1 = "/home/drew/Pictures/Wallpaper/2025-02-18 - Haleakela Clouds.jpg";
clouds2 = "/home/drew/Pictures/Wallpaper/2025-02-18 - Haleakela Clouds 2.jpg";
sunset_wide = "/home/drew/Pictures/Wallpaper/2025-02-19 - Hawaii Sunset.jpg";
sunset_tall = "/home/drew/Pictures/Wallpaper/2025-02-20 - Hawaii Sunset - Tall.jpg";
in
{
ipc = "on";
splash = false;
preload = [
clouds1
clouds2
sunset_wide
sunset_tall
];
wallpaper = [
"DP-2,${clouds1}"
"DP-1,${sunset_tall}"
];
};
};
}

View File

@@ -1,14 +1,23 @@
{ pkgs, ... }:
{
imports = map (x: ../../../home-manager + x) [
"/features/development/development.nix"
"/features/development/haskell.nix"
"/features/gaming.nix"
"/features/linux-desktop.nix"
"/features/hyprpaper.nix"
"/features/notes.nix"
"/features/eww"
let
monitors = [
"DP-1"
"DP-2"
];
in
{
imports =
map (x: ../../../home-manager + x) [
"/features/development/development.nix"
"/features/development/haskell.nix"
"/features/gaming.nix"
"/features/linux-desktop.nix"
"/features/notes.nix"
"/features/eww"
]
++ [
(import ../../../home-manager/features/wallpaper.nix monitors)
];
home.stateVersion = "24.11";