nixos/home/gyroflow/home.nix
2025-01-13 11:52:09 +08:00

22 lines
351 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.passthrough.gyroflow;
in
mkIf cfg.enable {
# temporarily gone until regression is fixed
#home.packages = [ cfg.package ];
wayland.windowManager.sway.config.window.commands = [
{
criteria.app_id = "xyz.gyroflow.gyroflow";
command = "floating enable";
}
];
}