nixos/nixos/environments/plasma-wayland.nix
2025-01-26 17:58:58 -05:00

14 lines
318 B
Nix

{ pkgs, ... }:
{
services.xserver.videoDrivers = ["nvidia"];
services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs; [
plasma-browser-integration
konsole
];
}