13 lines
285 B
Nix
13 lines
285 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.desktopManager.plasma6.enable = true;
|
|
|
|
services.xserver.xkb.layout = "us";
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
plasma-browser-integration
|
|
konsole
|
|
oxygen
|
|
];
|
|
}
|