23 lines
450 B
Nix
23 lines
450 B
Nix
{pkgs, inputs, ...}:
|
|
{
|
|
|
|
imports = [
|
|
];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
|
|
settings = {
|
|
# bind = [
|
|
# "SUPER, Space, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window"
|
|
# ];
|
|
#So hyprland doesnt break after a rebuild...
|
|
#exec = [ "systemctl --user restart hyprland-session.target" ];
|
|
};
|
|
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
|
|
};
|
|
}
|