try out kde

This commit is contained in:
Grisha Shipunov 2025-06-10 19:40:17 +02:00
parent 9cbb86603e
commit f68df0d787
4 changed files with 47 additions and 3 deletions

39
modules/plasma.nix Normal file
View file

@ -0,0 +1,39 @@
{ pkgs, ... }:
{
imports = [
./desktop-software.nix
./fonts.nix
];
environment.systemPackages = with pkgs.kdePackages; [
kmail
okular
];
programs.kde-pim = {
enable = true;
kmail = true;
kontact = true;
merkuro = true;
};
# Enable sound.
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
programs.zsh.vteIntegration = true;
programs.bash.vteIntegration = true;
hardware.bluetooth.enable = true;
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
services.desktopManager.plasma6.enable = true;
}