6 lines
130 B
Nix
6 lines
130 B
Nix
{ lib, config, ... }:
|
|
lib.mkIf config.desktop.wm.plasma6.enable {
|
|
services.desktopManager.plasma6 = {
|
|
enable = true;
|
|
};
|
|
}
|