mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
15 lines
309 B
Nix
15 lines
309 B
Nix
|
{lib, pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
wayland.windowManager.hyprland.settings = {
|
||
|
# See here for details
|
||
|
# https://wiki.hyprland.org/Configuring/Window-Rules/#syntax
|
||
|
# to see active window details:
|
||
|
# hyprctl clients
|
||
|
windowrulev2 = [
|
||
|
"float,class:(Rofi)"
|
||
|
"float,title:(dbeaver)"
|
||
|
];
|
||
|
};
|
||
|
}
|