nix-config/home/hyprland/default.nix

26 lines
584 B
Nix
Raw Normal View History

2025-03-24 23:02:51 +01:00
{ pkgs, ...}:
2025-03-24 12:11:44 +01:00
2025-03-24 23:01:13 +01:00
{
2025-03-24 23:15:10 +01:00
programs.kitty.enable = true;
wayland.windowManager.hyprland.enable = true;
home.sessionVariables.NIXOS_OZONE_WL = "1";
2025-03-24 23:01:13 +01:00
2025-03-24 23:15:10 +01:00
wayland.windowManager.hyprland.settings = {
"$mod" = "SUPER";
2025-03-25 01:18:14 +01:00
"$terminal" = "kitty";
"$filemanager" = "dolphin";
2025-03-24 23:15:10 +01:00
bind = [
"$mod, F, exec, firefox"
2025-03-25 01:18:14 +01:00
"$mod, Q, exec, $terminal"
"$mod, C, killactive, "
"$mod, M, exit, "
"$mod, V, togglefloating, "
"$mod, R, exec, $menu"
"$mod, S, exec, $power"
"$mod, P, pseudo, "
"$mod, J, togglesplit, "
];
2025-03-24 23:15:10 +01:00
};
2025-03-24 12:11:44 +01:00
}