mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-04 03:53:35 +08:00
10 lines
197 B
Nix
10 lines
197 B
Nix
{ pkgs, ... }: {
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.sddm.enable = true;
|
|
desktopManager.plasma5.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
];
|
|
}
|