0xda157's home-manager and nixos config

update hyprpaper config

(needs
https://github.com/hyprwm/hyprpaper/commit/2953d963bec2ea63b4303e269b472524db46a121
to work)

+7 -10
+7 -10
modules/hosts/nixos/enceladus/default.nix
··· 106 106 }; 107 107 }; 108 108 109 - services.hyprpaper.settings = 110 - let 111 - image = 112 - pkgs.runCommand "black-pixel.png" { } 113 - "${lib.getExe' pkgs.imagemagick "convert"} xc:#000000 png32:$out"; 114 - in 115 - { 116 - preload = [ "${image}" ]; 117 - wallpaper = [ "desc:Seiko Epson Corporation EPSON HMD 0x00000001,${image}" ]; 118 - }; 109 + services.hyprpaper.settings.wallpaper = lib.singleton { 110 + monitor = "desc:Seiko Epson Corporation EPSON HMD 0x00000001"; 111 + path = toString ( 112 + pkgs.runCommand "black-pixel.png" { } 113 + "${lib.getExe' pkgs.imagemagick "convert"} xc:#000000 png32:$out" 114 + ); 115 + }; 119 116 }; 120 117 }