diff --git a/apps/hyprland/default.nix b/apps/hyprland/default.nix new file mode 100644 index 0000000..b14c85c --- /dev/null +++ b/apps/hyprland/default.nix @@ -0,0 +1,7 @@ +{inputs, pkgs, ...}: { + programs.hyprland = { + enable = true + package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; + portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; + }; +} diff --git a/modules/system/hyprland.nix b/modules/system/hyprland.nix new file mode 100644 index 0000000..2a59ce4 --- /dev/null +++ b/modules/system/hyprland.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ../../apps/hyprland/default.nix + ]; +}