- 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
20 lines
317 B
Nix
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
|
|
];
|
|
}
|