20 lines
472 B
Nix
20 lines
472 B
Nix
# 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;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# --- KDE extras ---
|
|
kdePackages.karousel
|
|
];
|
|
}
|