feat: initial commit

This commit is contained in:
2024-11-23 21:35:39 +01:00
commit 28590f35e1
11 changed files with 273 additions and 0 deletions

11
profiles/kde/default.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs, ...}: {
# Plasma
services.xserver.enable = true;
services.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
environment.systemPackages = with pkgs; [
xdg-desktop-portal
xdg-desktop-portal-kde
];
}