12 lines
186 B
Nix
12 lines
186 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.xserver.displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
wayland = {
|
|
enable = true;
|
|
compositor = "weston";
|
|
};
|
|
};
|
|
};
|
|
}
|