forked from Shinonome/omarchy-nix
15 lines
350 B
Nix
15 lines
350 B
Nix
inputs: {
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
# package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
|
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
|
|
|
};
|
|
}
|