3
0
Fork 0
forked from mirrors/nixpkgs

xterm: Don't enable unless X11 is enabled

This commit is contained in:
Eelco Dolstra 2014-04-03 20:44:31 +02:00
parent f2cb92f5d4
commit 6e086caa8a

View file

@ -19,7 +19,7 @@ in
};
config = mkIf cfg.enable {
config = mkIf (config.services.xserver.enable && cfg.enable) {
services.xserver.desktopManager.session = singleton
{ name = "xterm";