17 lines
227 B
Nix
17 lines
227 B
Nix
{
|
|
services.displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
|
|
settings = {
|
|
General = {
|
|
Numlock = "on";
|
|
};
|
|
};
|
|
};
|
|
|
|
defaultSession = "plasma";
|
|
};
|
|
}
|