22 lines
390 B
Nix
22 lines
390 B
Nix
|
{
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
desktopManager.plasma5.enable = true;
|
||
|
displayManager = {
|
||
|
defaultSession = "plasmawayland";
|
||
|
lightdm.enable = true;
|
||
|
autoLogin.user = "tami";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
programs.dconf.enable = true;
|
||
|
|
||
|
programs.xwayland.enable = true;
|
||
|
|
||
|
hardware.opengl = {
|
||
|
enable = true;
|
||
|
driSupport = true;
|
||
|
driSupport32Bit = true;
|
||
|
};
|
||
|
}
|