refactor(gyroflow): move package to module
This commit is contained in:
parent
1ec95fe714
commit
6707ee74fd
|
@ -4,9 +4,7 @@
|
|||
, ... }: with lib; let
|
||||
cfg = config.passthrough.gyroflow;
|
||||
in mkIf cfg.enable {
|
||||
home.packages = with pkgs; [ (gyroflow.overrideAttrs (finalAttrs: previousAttrs: {
|
||||
buildInputs = previousAttrs.buildInputs ++ [ pkgs.qt6Packages.qtwayland ];
|
||||
})) ];
|
||||
home.packages = [ cfg.package ];
|
||||
|
||||
wayland.windowManager.sway.config.window.commands = [
|
||||
{ criteria.app_id = "xyz.gyroflow.gyroflow"; command = "floating enable"; }
|
||||
|
|
|
@ -6,6 +6,13 @@
|
|||
in {
|
||||
options.home.gyroflow = {
|
||||
enable = mkEnableOption "gyroflow stabilisation software";
|
||||
package = mkOption {
|
||||
type = with types; package;
|
||||
default = pkgs.gyroflow.overrideAttrs (finalAttrs: previousAttrs: {
|
||||
buildInputs = previousAttrs.buildInputs ++ [ pkgs.qt6Packages.qtwayland ];
|
||||
});
|
||||
description = "gyroflow package";
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
|
|
Loading…
Reference in a new issue