Move files into a sub folder to clean up a bit

This commit is contained in:
Aaron Honeycutt 2022-06-18 08:50:28 -06:00
parent 8d629a40c6
commit 5edcc12af5
6 changed files with 3 additions and 3 deletions

View file

@ -1,27 +0,0 @@
{ 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
];
}