Files
cnix/home/modules/hypr/default.nix
2024-06-24 20:27:04 +02:00

13 lines
236 B
Nix

{ pkgs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
xwayland.enable = true;
extraConfig = ''
${builtins.readFile ./hyprland.conf}
'';
systemd.enable = true;
};
}