nixos-configs/modules/hyprland/Hyprspace.nix
matt1432 27f1d01f31
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: get rid of mdDocs usage
2024-06-24 12:30:49 -04:00

16 lines
224 B
Nix

{
Hyprspace,
pkgs,
...
}: {
wayland.windowManager.hyprland = {
plugins = [Hyprspace.packages.${pkgs.system}.Hyprspace];
settings = {
bind = [
"ALT, tab, overview:toggle"
];
};
};
}