Jump to content

KDE: Difference between revisions

give some more nuance on how to install plasma 6 and what it comes with
imported>Lumarius
(The example for installing a Qt theme using Kvantum uses Home Manager.)
(give some more nuance on how to install plasma 6 and what it comes with)
Line 5: Line 5:
To use KDE Plasma, add this to your configuration.nix:
To use KDE Plasma, add this to your configuration.nix:


<syntaxHighlight lang=nix>
<syntaxhighlight lang="nix">
services.xserver.enable = true;
services.xserver.enable = true;
services.xserver.displayManager.sddm.enable = true;
services.xserver.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
# KDE Plasma 6 is now available on unstable
</syntaxhighlight>Or if you want to use Plasma 6, available on nixpkgs-unstable: (this option enables sddm & xdg portal automatically):<syntaxhighlight lang="nix">
# services.desktopManager.plasma6.enable = true;
services.desktopManager.plasma6.enable = true;
</syntaxHighlight>
</syntaxhighlight>


=== Excluding some KDE Plasma applications from the default install ===
=== Excluding some KDE Plasma applications from the default install ===
4

edits