17 lines
347 B
Nix
17 lines
347 B
Nix
{ config, lib, pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
./desktop-common.nix
|
|
];
|
|
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
programs.kdeconnect.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# this fixes tiny file dialogs for Minecraft
|
|
libsForQt5.kdialog
|
|
];
|
|
}
|