mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
13 lines
348 B
Nix
13 lines
348 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;
|
|
};
|
|
}
|