31 lines
426 B
Nix
31 lines
426 B
Nix
![]() |
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Debloat.
|
||
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||
|
plasma-browser-integration
|
||
|
konsole
|
||
|
oxygen
|
||
|
kate
|
||
|
okular
|
||
|
elisa
|
||
|
];
|
||
|
|
||
|
services = {
|
||
|
libinput.enable = true;
|
||
|
|
||
|
displayManager = {
|
||
|
sddm.enable = true;
|
||
|
};
|
||
|
|
||
|
desktopManager = {
|
||
|
plasma6.enable = true;
|
||
|
};
|
||
|
|
||
|
power-profiles-daemon.enable = false;
|
||
|
};
|
||
|
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|