group plasma

This commit is contained in:
Osman Faruk Bayram 2025-11-07 10:17:24 +03:00
parent ddd7b729df
commit 30d3041576

View file

@ -11,22 +11,21 @@ in
config = lib.mkMerge [
# Plasma Desktop Environment
(lib.mkIf (cfg.desktopEnvironment == "plasma") {
services.xserver.enable = true;
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
services = {
xserver.enable = true;
displayManager.sddm.enable = true;
desktopManager.plasma6.enable = true;
printing.enable = true;
};
environment.plasma6.excludePackages = with pkgs.kdePackages; [
environment = {
plasma6.excludePackages = with pkgs.kdePackages; [
kate
konsole
yakuake
krunner # fuckass program keeps opening
];
# Enable printing
services.printing.enable = true;
# Desktop packages
environment.systemPackages = with pkgs; [
systemPackages = with pkgs; [
alacritty
ghostty
obsidian
@ -35,9 +34,8 @@ in
qbittorrent
element-desktop
];
# Wayland support
environment.sessionVariables.NIXOS_OZONE_WL = "1";
sessionVariables.NIXOS_OZONE_WL = "1";
};
})
# GNOME Desktop Environment