Add files via upload

This commit is contained in:
ediblerope 2025-08-13 09:16:00 +01:00 committed by GitHub
parent 9a901cb6b7
commit d167bc68a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 263 additions and 123 deletions

30
modules/kde.nix Normal file
View file

@ -0,0 +1,30 @@
{ 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
];
}