17 lines
340 B
Nix
17 lines
340 B
Nix
|
{lib, config, pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.xserver.enable = true;
|
||
|
services.xserver.desktopManager.plasma5.enable = true;
|
||
|
|
||
|
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
libsForQt5.plasma-browser-integration
|
||
|
translate-shell
|
||
|
pavucontrol
|
||
|
];
|
||
|
};
|
||
|
}
|