nixos/machines/lil-maid/modules/graphics.nix
2024-08-05 20:53:43 +03:00

11 lines
157 B
Nix

{ commonMods, ... }:
{
imports = [
(commonMods + "/kde")
];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
}