11 lines
188 B
Nix
11 lines
188 B
Nix
{ config, lib, pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
./desktop-common.nix
|
|
];
|
|
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
}
|