Hyprland try

This commit is contained in:
get 2024-04-12 14:33:26 +02:00
commit bac86a3d54
3 changed files with 25 additions and 1 deletions

21
hosts/lars/hyprland.nix Normal file
View file

@ -0,0 +1,21 @@
{ 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"
];
};
};
}