38 lines
522 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
{ pkgs, ... }:
{
# Debloat.
environment.plasma6.excludePackages = with pkgs.kdePackages; [
2024-12-18 22:06:27 +03:00
plasma-browser-integration
konsole
oxygen
2024-10-14 18:43:31 +03:00
kate
okular
elisa
];
services = {
libinput.enable = true;
2024-12-18 22:06:27 +03:00
desktopManager = {
plasma6.enable = true;
};
2024-10-14 18:43:31 +03:00
2024-12-18 22:06:27 +03:00
power-profiles-daemon.enable = false;
2024-10-14 18:43:31 +03:00
};
2024-12-18 22:06:27 +03:00
services.xserver = {
2024-10-14 18:43:31 +03:00
enable = true;
2024-12-18 22:06:27 +03:00
displayManager = {
gdm.enable = true;
gdm.wayland = true;
};
2024-10-14 18:43:31 +03:00
};
2024-12-18 22:06:27 +03:00
#qt = {
# enable = true;
# platformTheme = "gnome";
# style = "adwaita-dark";
#};
2024-10-14 18:43:31 +03:00
}