nixos/system/plasma.nix

21 lines
465 B
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [ ./desktop.nix ];
environment.systemPackages = with pkgs;
with libsForQt5; [
2023-08-21 08:20:45 +01:00
plasma-wayland-protocols
plasma-integration
plasma-browser-integration
plasma-thunderbolt
kwin-tiling
krdc
];
services.xserver = {
enable = true;
desktopManager.plasma5.enable = true;
displayManager.sddm = {
enable = true;
settings = { General = { InputMethod = ""; }; };
};
};
}