From ded05e23fcc44af69f5ac9a4f1643dd413c327c5 Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 23 Dec 2025 20:22:09 +0000 Subject: [PATCH] added hyprland --- apps/hyprland/default.nix | 7 +++++++ modules/system/hyprland.nix | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 apps/hyprland/default.nix create mode 100644 modules/system/hyprland.nix diff --git a/apps/hyprland/default.nix b/apps/hyprland/default.nix new file mode 100644 index 0000000..b14c85c --- /dev/null +++ b/apps/hyprland/default.nix @@ -0,0 +1,7 @@ +{inputs, pkgs, ...}: { + programs.hyprland = { + enable = true + package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; + portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; + }; +} diff --git a/modules/system/hyprland.nix b/modules/system/hyprland.nix new file mode 100644 index 0000000..2a59ce4 --- /dev/null +++ b/modules/system/hyprland.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ../../apps/hyprland/default.nix + ]; +}