dot.nix/hosts/common/optional/hyprland/default.nix
Chris Toph 99cd170ffe Switches to uwsm for Hyprland session setup, WIP portals config needs cleanup
- Disables systemd management in favor of uwsm
- Updates environment variables for Wayland and portal support
- Adds xdg-desktop-portal packages to dependencies
- Adjusts greetd and Wayland configuration for uwsm integration
2025-04-14 13:50:59 -04:00

20 lines
317 B
Nix

{
inputs,
pkgs,
lib,
...
}:
{
imports = lib.custom.scanPaths ./.;
programs.hyprland = {
enable = true;
withUWSM = true;
};
environment.systemPackages = [
inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default
inputs.better-control.packages.${pkgs.system}.better-control
];
}