Delete modules/kde.nix

This commit is contained in:
ediblerope 2025-12-03 15:58:45 +00:00 committed by GitHub
parent 04be2f2f10
commit 0a1ceef43a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,30 +0,0 @@
{ config, lib, pkgs, ... }:
{
# Enable SDDM with Wayland support
services.displayManager = {
sddm = {
enable = true;
wayland.enable = true; # Force Wayland mode
};
};
# Enable Plasma with Wayland
services.desktopManager.plasma6.enable = true;
environment.systemPackages = with pkgs; [
kdePackages.kcalc # Calculator
kdePackages.kcharselect # Tool to select and copy special characters from all installed fonts
kdePackages.kcolorchooser # A small utility to select a color
kdePackages.kolourpaint # Easy-to-use paint program
kdePackages.ksystemlog # KDE SystemLog Application
kdePackages.sddm-kcm # Configuration module for SDDM
kdePackages.kate #text editor
kdePackages.krunner
libnotify
xsettingsd
xorg.xrdb
];
}