nichts/hosts/lars/hyprland.nix

22 lines
392 B
Nix
Raw Normal View History

2024-04-12 14:33:26 +02:00
{ config, inputs, pkgs, ... }:
let
username = config.myOptions.other.system.username;
in {
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
wayland.windowManager.hyprland = {
enable = true;
settings = {
"$mod" = "SUPER";
bind = [
"$mod, Q, killactive"
"$mod, return, kitty"
"$mod SHIFT, return, firefox"
];
};
};
}