mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2026-02-03 22:26:24 -05:00
14 lines
320 B
Nix
14 lines
320 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
desktopManager.plasma6.enable = true;
|
|
|
|
displayManager.sddm.enable = true;
|
|
|
|
displayManager.sddm.wayland.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wayland-utils # Wayland utilities
|
|
wl-clipboard # Command-line copy/paste utilities for Wayland
|
|
];
|
|
}
|