Add element

This commit is contained in:
KnightArtorias 2026-06-21 11:44:11 -04:00
parent 0eb50e795f
commit a83ec768eb
2 changed files with 19 additions and 0 deletions

View file

@ -126,6 +126,14 @@
matches = [ { app-id="^flameshot$"; } ]; matches = [ { app-id="^flameshot$"; } ];
open-floating = true; open-floating = true;
} }
{
matches = [ { app-id="^Lens$"; } ];
open-maximized = true;
}
{
matches = [ { app-id="^element$"; } ];
open-maximized = true;
}
]; ];
binds = { binds = {

View file

@ -37,6 +37,17 @@
lutris lutris
steam steam
easyeffects easyeffects
# Wrap Element so it knows where gnome-libsecret it
(symlinkJoin {
name = "element-desktop";
paths = [ element-desktop ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/element-desktop \
--add-flags "--password-store=gnome-libsecret"
'';
})
]; ];
nixpkgs.overlays = [ nixpkgs.overlays = [