mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 20:21:53 +00:00
Exclude unwanted packages from Plasma and X server
Added configuration to exclude 'konsole' and 'elisa' from Plasma 6 packages and 'xterm' from X server packages in the laptop host configuration.
This commit is contained in:
@@ -23,6 +23,15 @@
|
|||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Exclude unwanted packages from Plasma
|
||||||
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||||||
|
konsole
|
||||||
|
elisa
|
||||||
|
];
|
||||||
|
|
||||||
|
# Exclude xterm
|
||||||
|
services.xserver.excludePackages = [ pkgs.xterm ];
|
||||||
|
|
||||||
# Optional: Enable Wayland compositor
|
# Optional: Enable Wayland compositor
|
||||||
# programs.hyprland = {
|
# programs.hyprland = {
|
||||||
|
|||||||
Reference in New Issue
Block a user