nixos/desktop/plasma.nix

24 lines
534 B
Nix
Raw Normal View History

2023-03-29 22:07:42 +01:00
{ pkgs, ... }:
{
imports = [
./xserver.nix
./sddm.nix
];
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.xserver.desktopManager.plasma5.enable = true;
2023-04-18 08:15:47 +01:00
services.xserver.displayManager.defaultSession = "plasmawayland";
2023-03-29 22:07:42 +01:00
programs.kdeconnect.enable = true;
2023-03-29 11:48:08 +01:00
environment.systemPackages = with pkgs; [
libsForQt5.lightly
libsForQt5.qtstyleplugin-kvantum
libsForQt5.kwindowsystem
catppuccin-kvantum
2023-03-29 11:48:08 +01:00
catppuccin-kde
];
}