26 lines
517 B
Nix
26 lines
517 B
Nix
{
|
|
description = "Hyprland Config";
|
|
|
|
inputs = {
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
};
|
|
|
|
outputs = { self, ... }@inputs: {
|
|
|
|
module = { config, lib, pkgs, ... }: {
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
|
|
xwayland.enable = true;
|
|
|
|
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
|
|
|
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
}
|