mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
34 lines
572 B
Nix
Executable File
34 lines
572 B
Nix
Executable File
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
qt = {
|
|
enable = true;
|
|
style = "breeze";
|
|
platformTheme = "kde6"; # kde6
|
|
};
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
plasma-browser-integration
|
|
elisa
|
|
# kwallet
|
|
# kwallet-pam
|
|
# kwalletmanager
|
|
];
|
|
services = {
|
|
displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
theme = "WhiteSur-light";
|
|
wayland = {
|
|
enable = true;
|
|
compositor = "kwin";
|
|
};
|
|
};
|
|
};
|
|
desktopManager.plasma6.enable = true;
|
|
};
|
|
}
|