This commit is contained in:
2026-03-06 19:42:47 -06:00
parent c8cfd433ae
commit 13e5c8410e

View File

@@ -1,6 +1,6 @@
{ ... }: { { inputs, ... }: {
flake.nixosModules.default = { config, lib, pkgs, hyprland, ... }: { flake.nixosModules.default = { config, lib, pkgs, ... }: {
options.sysconfig.programs.hyprland.enable = lib.options.mkOption { options.sysconfig.programs.hyprland.enable = lib.options.mkOption {
type = lib.types.bool; type = lib.types.bool;
@@ -22,9 +22,9 @@
systemd.setPath.enable = true; systemd.setPath.enable = true;
package = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
}; };
}; };
}; };