group plasma
This commit is contained in:
parent
ddd7b729df
commit
30d3041576
1 changed files with 24 additions and 26 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue