Add files via upload
This commit is contained in:
parent
9a901cb6b7
commit
d167bc68a5
8 changed files with 263 additions and 123 deletions
30
modules/kde.nix
Normal file
30
modules/kde.nix
Normal 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
|
||||
];
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue