18 lines
396 B
Nix
18 lines
396 B
Nix
|
{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
|
||
|
];
|
||
|
};
|
||
|
}
|