nixos/modules/plasma.nix

15 lines
417 B
Nix
Raw Normal View History

2024-02-02 21:58:06 +01:00
{ config, pkgs, ... }:
2024-02-02 21:07:29 +01:00
{
2024-02-02 21:58:06 +01:00
# Enable the X11 windowing system.
services.xserver.enable = true;
2024-02-02 21:07:29 +01:00
2024-02-02 21:58:06 +01:00
# Enable the KDE Plasma Desktop Environment.
services.xserver.displayManager.sddm.enable = true;
2024-02-19 21:18:19 +01:00
services.xserver.displayManager.defaultSession = "plasmawayland";
2024-02-02 21:58:06 +01:00
services.xserver.desktopManager.plasma5.enable = true;
2024-02-20 00:02:42 +01:00
environment.systemPackages = with pkgs; [
libsForQt5.plasma-browser-integration
];
2024-02-02 21:07:29 +01:00
}