0xda157's home-manager and nixos config

moverio display config

+25 -6
+25 -6
modules/hosts/nixos/enceladus/default.nix
··· 21 21 tuned.enable = true; 22 22 }; 23 23 24 - monitors = lib.singleton { 25 - name = "eDP-1"; 26 - width = 2256; 27 - height = 1504; 28 - scale = 1.333; 29 - }; 24 + monitors = [ 25 + { 26 + name = "eDP-1"; 27 + width = 2256; 28 + height = 1504; 29 + scale = 1.333; 30 + } 31 + { 32 + name = "desc:Seiko Epson Corporation EPSON HMD 0x00000001"; 33 + width = 1920; 34 + height = 1080; 35 + y = -1080; 36 + } 37 + ]; 30 38 }; 31 39 32 40 boot.kernelPatches = [ ··· 94 102 settings = import ./fcitx5-settings.nix; 95 103 }; 96 104 }; 105 + 106 + services.hyprpaper.settings = 107 + let 108 + image = 109 + pkgs.runCommand "black-pixel.png" { } 110 + "${lib.getExe' pkgs.imagemagick "convert"} xc:#000000 png32:$out"; 111 + in 112 + { 113 + preload = [ "${image}" ]; 114 + wallpaper = [ "desc:Seiko Epson Corporation EPSON HMD 0x00000001,${image}" ]; 115 + }; 97 116 }; 98 117 }