11 lines
157 B
Nix
11 lines
157 B
Nix
{ commonMods, ... }:
|
|
{
|
|
imports = [
|
|
(commonMods + "/kde")
|
|
];
|
|
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
}
|