aboutsummaryrefslogtreecommitdiff
path: root/modules/home/hyprland/hyprland.nix
blob: 9a65a0bbdd96c2de89b0809ebfafcc27801a3350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

{
  programs.hyprland = {
    enable = true;
  };

  environment.systemPackages = with pkgs; [
  qt6.qtwayland
  qt6.qttools
];
}