2023-10-18 14:00:52 -04:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
|
|
|
services = {
|
|
|
|
xserver = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
|
|
displayManager.sddm.enable = true;
|
|
|
|
desktopManager.plasma5.enable = true;
|
|
|
|
};
|
|
|
|
dbus.enable = true;
|
|
|
|
gvfs.enable = true;
|
|
|
|
flatpak.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
p7zip # for reshade
|
|
|
|
xclip
|
2023-10-20 00:28:35 -04:00
|
|
|
flat-remix-icon-theme
|
2023-10-19 23:18:09 -04:00
|
|
|
nextcloud-client
|
2023-10-25 14:34:49 -04:00
|
|
|
spotifywm
|
2023-10-19 23:18:09 -04:00
|
|
|
(pkgs.discord.override {
|
|
|
|
withOpenASAR = true;
|
|
|
|
withVencord = true;
|
|
|
|
})
|
2023-10-25 15:54:08 -04:00
|
|
|
|
|
|
|
# School
|
|
|
|
bluej
|
2023-10-18 14:00:52 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
|
|
|
|
elisa
|
|
|
|
oxygen
|
|
|
|
khelpcenter
|
|
|
|
konsole
|
|
|
|
plasma-browser-integration
|
|
|
|
];
|
|
|
|
}
|