fix(gyroflow): add qtwayland
This commit is contained in:
parent
f63bba35f4
commit
b96a0d2da8
|
@ -4,5 +4,11 @@
|
||||||
, ... }: with lib; let
|
, ... }: with lib; let
|
||||||
cfg = config.passthrough.gyroflow;
|
cfg = config.passthrough.gyroflow;
|
||||||
in mkIf cfg.enable {
|
in mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [ gyroflow ];
|
home.packages = with pkgs; [ (gyroflow.overrideAttrs (finalAttrs: previousAttrs: {
|
||||||
|
buildInputs = previousAttrs.buildInputs ++ [ pkgs.qt6Packages.qtwayland ];
|
||||||
|
})) ];
|
||||||
|
|
||||||
|
wayland.windowManager.sway.config.window.commands = [
|
||||||
|
{ criteria.app_id = "xyz.gyroflow.gyroflow"; command = "floating enable"; }
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue