nixos-config/common/components/de/sddm.nix

17 lines
227 B
Nix
Raw Normal View History

2024-04-22 20:48:35 +02:00
{
services.displayManager = {
sddm = {
enable = true;
wayland.enable = true;
2024-04-22 21:47:52 +02:00
settings = {
General = {
Numlock = "on";
};
};
2024-04-22 20:48:35 +02:00
};
defaultSession = "plasma";
};
}