ironbar, sway tweaks, user services
This commit is contained in:
parent
899f706e3f
commit
fbc47ef8f7
5 changed files with 117 additions and 33 deletions
28
overlay.nix
28
overlay.nix
|
@ -14,10 +14,32 @@
|
|||
podman-stable = final: prev: {podman-stable = final.stable.podman;};
|
||||
wlroots = final: prev: {
|
||||
wlroots = final.unstable.wlroots_0_16.overrideAttrs (wfinal: wprev: {
|
||||
postPatch = wprev.postPatch + ''substituteInPlace render/gles2/renderer.c --replace "glFlush();" "glFinish();"'';
|
||||
postPatch =
|
||||
wprev.postPatch
|
||||
+ ''
|
||||
substituteInPlace render/gles2/renderer.c --replace "glFlush();" "glFinish();"
|
||||
'';
|
||||
});
|
||||
};
|
||||
sway-unwrapped = final: prev: {sway-unwrapped = final.unstable.sway-unwrapped.override {wlroots = final.wlroots;};};
|
||||
sway = final: prev: {sway = final.unstable.sway.override {sway-unwrapped = final.sway-unwrapped;};};
|
||||
sway-unwrapped = final: prev: {
|
||||
sway-unwrapped =
|
||||
(final.unstable.sway-unwrapped.override {
|
||||
wlroots = final.wlroots;
|
||||
systemdSupport = true;
|
||||
trayEnabled = true;
|
||||
})
|
||||
.overrideAttrs (
|
||||
sfinal: sprev: {
|
||||
patches = (sprev.patches or []) ++ [./sway-nvidia.patch];
|
||||
}
|
||||
);
|
||||
};
|
||||
sway = final: prev: {
|
||||
sway = final.unstable.sway.override {
|
||||
sway-unwrapped = final.sway-unwrapped;
|
||||
withBaseWrapper = true;
|
||||
withGtkWrapper = true;
|
||||
};
|
||||
};
|
||||
swayfx = final: prev: {swayfx = final.unstable.swayfx.override {sway-unwrapped = final.sway-unwrapped;};};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue