Remove force on active border

This commit is contained in:
DashieTM 2024-09-01 11:03:49 +02:00
parent 07a4bd3a96
commit a5eebb6030

View file

@ -65,6 +65,14 @@
Will be merged with default configuration if enabled. Will be merged with default configuration if enabled.
''; '';
}; };
plugins = lib.mkOption {
default = [ ];
example = [ ];
type = with lib.types; listOf package;
description = ''
Plugins to be added to Hyprland.
'';
};
}; };
}; };
@ -346,9 +354,8 @@
# }; # };
} }
// config.mods.hyprland.custom_config; // config.mods.hyprland.custom_config;
# wayland.windowManager.hyprland.plugins = [ plugins = config.mods.hyprland.plugins;
# inputs.Hyprspace.packages.${pkgs.system}.Hyprspace #inputs.Hyprspace.packages.${pkgs.system}.Hyprspace
# ];
}; };
} }
); );