nixos-config/modules/home-manager/ricing/hyprland/default.nix
2024-07-11 23:01:17 +09:00

20 lines
411 B
Nix

{ config, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
settings = {
monitor = [
"eDP-1, preferred, auto-right, 1"
"HDMI-A-2, preferred, auto-left, 1"
];
"$mod" = "SUPER";
bind = [
"$mod, F, exec, firefox"
"$mod, T, exec, kitty"
];
};
};
}