This commit is contained in:
2026-04-06 16:07:47 +02:00
parent 30039975c0
commit 8d8703b1cc
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ inputs, ... }: {
flake.nixosModules.hyprland-sys-hyprland = { pkgs, ... }: {
programs.hyprland = {
enable = true;
xwayland.enable = true;
withSystemd = true;
withUWSM = true;
};
environment.systemPackages = [
inputs.caelestia-shell.packages.${pkgs.stdenv.hostPlatform.system}.with-cli
];
};
}