nix-config/home/hyprland/default.nix

16 lines
305 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";
bind = [
"$mod, F, exec, firefox"
", Print, exec, grimblat copy area"
];
};
2025-03-24 12:11:44 +01:00
}