mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
fba993c589
* Set nix official formatter for the flake * format the entire project
15 lines
349 B
Nix
15 lines
349 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 = pkgs.xdg-desktop-portal-hyprland; # Use stable nixpkgs version to fix Qt version mismatch
|
|
};
|
|
}
|