1
Fork 0
nixos-system-config/wm/plasma.nix

14 lines
215 B
Nix
Raw Normal View History

2024-04-05 14:36:20 +02:00
{ config, lib, pkgs, ... }:
{
imports = [
../packages/sets/x.nix
];
services.xserver = {
enable = true;
displayManager.sddm.enable = true;
};
services.desktopManager.plasma6.enable = true;
}