16 lines
305 B
Nix
16 lines
305 B
Nix
{ pkgs, ...}:
|
|
|
|
{
|
|
programs.kitty.enable = true;
|
|
wayland.windowManager.hyprland.enable = true;
|
|
home.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
"$mod" = "SUPER";
|
|
bind = [
|
|
"$mod, F, exec, firefox"
|
|
", Print, exec, grimblat copy area"
|
|
];
|
|
};
|
|
}
|