nixos/modules/plasma.nix
Florian RICHER 17cb24121e Remove samba with plasma
require ceph 18.2.1 (not in cache) and samba 4.20 (recompiled)
2024-05-05 14:35:49 +02:00

18 lines
467 B
Nix

{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager = {
sddm.enable = true;
defaultSession = "plasma";
};
services.desktopManager.plasma6.enable = true;
programs.kdeconnect.enable = true;
environment.systemPackages = with pkgs; with kdePackages; [
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
];
}