20 lines
442 B
Nix
20 lines
442 B
Nix
with import <nixpkgs> {};
|
|
{
|
|
# Enable the X11 windowing system.
|
|
services.xserver = {
|
|
enable = true;
|
|
videoDrivers = ["nvidia"];
|
|
displayManager = {
|
|
sddm.enable = true;
|
|
defaultSession = "plasmawayland";
|
|
};
|
|
desktopManager = {
|
|
plasma5.enable = true;
|
|
xfce.enable = true;
|
|
};
|
|
};
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
# services.xserver.libinput.enable = true;
|
|
}
|