19 lines
280 B
Nix
Executable file
19 lines
280 B
Nix
Executable file
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
cfg = config.hyprland;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
wayland.windowManager.hyprland.settings = {
|
|
windowrulev2 = [
|
|
"suppressevent maximize, class:.*"
|
|
];
|
|
|
|
workspace = [
|
|
];
|
|
};
|
|
};
|
|
}
|