tangled
alpha
login
or
join now
da157.id
/
nix-config
0
fork
atom
0xda157's home-manager and nixos config
0
fork
atom
overview
issues
pulls
pipelines
use hyprpaper with desc: support
0xda157
2 months ago
cb7181cf
427dba25
0/1
check.yml
failed
2mo ago
+16
-6
1 changed file
expand all
collapse all
unified
split
modules
hosts
nixos
enceladus
default.nix
+16
-6
modules/hosts/nixos/enceladus/default.nix
···
106
106
};
107
107
};
108
108
109
109
-
services.hyprpaper.settings.wallpaper = lib.singleton {
110
110
-
monitor = "desc:Seiko Epson Corporation EPSON HMD 0x00000001";
111
111
-
path = toString (
112
112
-
pkgs.runCommand "black-pixel.png" { }
113
113
-
"${lib.getExe' pkgs.imagemagick "convert"} xc:#000000 png32:$out"
114
114
-
);
109
109
+
services.hyprpaper = {
110
110
+
package = pkgs.hyprpaper.overrideAttrs (_prev: {
111
111
+
src = pkgs.fetchFromGitHub {
112
112
+
owner = "hyprwm";
113
113
+
repo = "hyprpaper";
114
114
+
rev = "2953d963bec2ea63b4303e269b472524db46a121";
115
115
+
hash = "sha256-vxAZg+NzAKuWZv2yDrTcXrU+klpAcGFo1FvjYb/CqZ8=";
116
116
+
};
117
117
+
});
118
118
+
settings.wallpaper = lib.singleton {
119
119
+
monitor = "desc:Seiko Epson Corporation EPSON HMD 0x00000001";
120
120
+
path = toString (
121
121
+
pkgs.runCommand "black-pixel.png" { }
122
122
+
"${lib.getExe' pkgs.imagemagick "convert"} xc:#000000 png32:$out"
123
123
+
);
124
124
+
};
115
125
};
116
126
};
117
127
}