Add KDE role

This commit is contained in:
Toast 2023-06-08 20:35:45 +02:00
parent a2139de8e5
commit da33ec4712
4 changed files with 15 additions and 5 deletions

7
roles/kde/default.nix Executable file
View file

@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./plasma.nix
];
}

7
roles/kde/plasma.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, lib, ... }:
{
# Enable the Plasma 5 Desktop Environment.
services.xserver.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
}