This commit is contained in:
2025-09-18 20:48:12 +01:00
parent 7d00a2af45
commit 8bd0b65df7
6 changed files with 742 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ inputs, pkgs, ... }:
let
in
{
imports = [
./settings.nix
];
wayland.windowManager.hyprland = {
enable = true;
# set the flake package
# settings = { };
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
}