This commit is contained in:
do butterflies cry? 2026-03-07 13:08:30 +10:00
parent ac95603fc4
commit f7de9f7a23
Signed by untrusted user: cry
GPG key ID: F68745A836CA0412
42 changed files with 1061 additions and 445 deletions

30
overlays/default.nix Normal file
View file

@ -0,0 +1,30 @@
{
inputs,
system,
...
}: (
self: super: {
element-desktop = super.element-desktop.overrideAttrs (
final: prev: {
desktopItems = [
((builtins.elemAt prev.desktopItems 0).override {
exec = "element-desktop %u --password-store=\"gnome-libsecret\"";
})
];
}
);
waywall = super.waywall.overrideAttrs (
f: p: {
version = "0-unstable-2026-01-06";
src = super.fetchFromGitHub {
owner = "tesselslate";
repo = "waywall";
rev = "c6504f95f8d757a2e060c4df8bd3ed145ad59e8d";
hash = "sha256-kfBsppc+esz0Q6iIIKAeOMwkIWdN12AlH3Dji8bU32c=";
};
}
);
}
)