nixos-configuration/desktop/kde-plasma.nix

18 lines
396 B
Nix
Raw Normal View History

2023-12-12 00:48:10 +01:00
{lib, config, pkgs, ...}:
{
config = {
services.xserver.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
services.xserver.displayManager.sddm.enable = true;
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.systemPackages = with pkgs; [
libsForQt5.plasma-browser-integration
translate-shell
pavucontrol
];
};
}