21 lines
279 B
Nix
21 lines
279 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
"$mod" = "SUPER";
|
|
|
|
bind = [
|
|
"$mod, Q, exec, ghostty"
|
|
"$mod, F, exec, brave"
|
|
];
|
|
};
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
NIXOS_OZONE_WL = "1";
|
|
};
|
|
}
|