11 lines
148 B
Nix
11 lines
148 B
Nix
|
|
{
|
||
|
|
flake.modules.nixos.gdm = {
|
||
|
|
services.displayManager = {
|
||
|
|
gdm = {
|
||
|
|
enable = true;
|
||
|
|
wayland = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|