mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 08:37:34 +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; [
|
|
];
|
|
}
|