brightnessctl
and qutebrowser
without xwayland
This commit is contained in:
parent
77e2a86231
commit
8175759a71
4 changed files with 15 additions and 3 deletions
|
@ -18,6 +18,7 @@ in
|
|||
amule = prev.callPackage (import ./amule) { };
|
||||
digikam = nixpkgsUnstable.digikam;
|
||||
cura = nixpkgsUnstable.cura;
|
||||
qutebrowser = import ./qutebrowser { pkgs = prev; };
|
||||
#firefox-unwrapped = nixpkgsUnstable.firefox-unwrapped;
|
||||
xdg-desktop-portal = nixpkgsUnstable.xdg-desktop-portal;
|
||||
xdg-desktop-portal-gtk = nixpkgsUnstable.xdg-desktop-portal-gtk;
|
||||
|
|
9
pkgs/qutebrowser/default.nix
Normal file
9
pkgs/qutebrowser/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ pkgs }:
|
||||
|
||||
pkgs.qutebrowser.overrideAttrs (old: {
|
||||
buildInputs = old.buildInputs ++ [ pkgs.makeWrapper ];
|
||||
postInstall = old.postInstall or "" + ''
|
||||
wrapProgram "$out/bin/qutebrowser" --set QT_QPA_PLATFORM wayland --set QT_WAYLAND_DISABLE_WINDOWDECORATION 1
|
||||
'';
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue