# This is your system's configuration file. # Use this to configure your system environment (it replaces /etc/nixos/configuration.nix) { inputs, lib, config, pkgs, ... }: { # --- Display & window managers --- services.displayManager.sddm.enable = true; services.displayManager.sddm.wayland.enable = true; services.desktopManager.plasma6.enable = true; programs.gamescope.enable = true; environment.systemPackages = with pkgs; [ # --- KDE extras --- kdePackages.karousel ]; }