diff --git a/hosts/solaire/default.nix b/hosts/solaire/default.nix index d064feb..28d016c 100644 --- a/hosts/solaire/default.nix +++ b/hosts/solaire/default.nix @@ -20,6 +20,7 @@ in { "${system}/services/greetd.nix" "${system}/programs/niri" + "${system}/programs/hyprland.nix" "${system}/services/gnome.nix" "${system}/services/documentation.nix" diff --git a/system/programs/hyprland.nix b/system/programs/hyprland.nix new file mode 100644 index 0000000..ba4df01 --- /dev/null +++ b/system/programs/hyprland.nix @@ -0,0 +1,11 @@ +{ + inputs, + pkgs, + ... +}: { + programs.hyprland = { + enable = true; + package = inputs.hyprland.packages.${pkgs.system}.hyprland; + portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland; + }; +}