15 lines
382 B
Nix
15 lines
382 B
Nix
{ lib, ... }:
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
};
|
|
|
|
programs.hyprlock.enable = true;
|
|
|
|
services.displayManager.defaultSession = "hyprland-uwsm";
|
|
|
|
# desktop.nix enables Plasma for the other machines; ena uses Hyprland.
|
|
services.desktopManager.plasma6.enable = lib.mkForce false;
|
|
xdg.portal.config.common.default = lib.mkForce "hyprland";
|
|
}
|