This commit is contained in:
2025-08-08 21:39:01 +03:00
parent 8cedf7f691
commit a7b5c6f466
11 changed files with 6 additions and 10 deletions
+38
View File
@@ -0,0 +1,38 @@
{
config,
lib,
pkgs,
...
}:
{
qt = {
enable = true;
style = "breeze";
platformTheme = "kde6"; # kde6
};
environment.plasma6.excludePackages = with pkgs; [
kdePackages.plasma-browser-integration
kdePackages.elisa
kdePackages.ksshaskpass
kdePackages.kwallet
kdePackages.kwallet-pam
kdePackages.kwalletmanager
libsForQt5.kwallet
libsForQt5.kwallet-pam
libsForQt5.kwalletmanager
];
services = {
displayManager = {
sddm = {
enable = true;
theme = "WhiteSur-light";
wayland = {
enable = true;
compositor = "kwin";
};
};
};
desktopManager.plasma6.enable = true;
};
programs.partition-manager.enable = true;
}