Upload New File

This commit is contained in:
Aaron Honeycutt 2022-08-21 23:14:16 +00:00
parent f22cc77348
commit c4ea1959f7

27
plasma.nix Normal file
View file

@ -0,0 +1,27 @@
{ config, pkgs, ... }:
{
# Plasma
services.xserver.enable = true;
services.xserver.displayManager.sddm.enable = true;
services.xserver.displayManager.sddm.settings.Wayland.SessionDir =
"${pkgs.plasma5Packages.plasma-workspace}/share/wayland-sessions";
services.xserver.desktopManager.plasma5.enable = true;
# Install some packages
environment.systemPackages =
with pkgs;
[
libsForQt5.ark
libsForQt5.bismuth
libsForQt5.full
libsForQt5.kalendar
libsForQt5.kate
libsForQt5.kdeconnect-kde
libsForQt5.kde-gtk-config
libsForQt5.plasma-framework
libsForQt5.plasma-nm
libsForQt5.plasma-pa
libsForQt5.sddm
];
}