system/programs: add hyprland module

This commit is contained in:
Anthony Rodriguez 2024-12-13 12:03:53 +01:00
parent ef36f7be36
commit cdda6bf2bc
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 12 additions and 0 deletions

View file

@ -20,6 +20,7 @@ in {
"${system}/services/greetd.nix"
"${system}/programs/niri"
"${system}/programs/hyprland.nix"
"${system}/services/gnome.nix"
"${system}/services/documentation.nix"

View file

@ -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;
};
}