lol

nixos/tests: fix Plasma 5 test

+4 -3
+1 -1
nixos/release-combined.nix
··· 72 72 (all nixos.tests.ecryptfs) 73 73 (all nixos.tests.ipv6) 74 74 (all nixos.tests.i3wm) 75 - (all nixos.tests.kde5) 75 + (all nixos.tests.plasma5) 76 76 #(all nixos.tests.lightdm) 77 77 (all nixos.tests.login) 78 78 (all nixos.tests.misc)
+1 -1
nixos/release.nix
··· 255 255 tests.influxdb = callTest tests/influxdb.nix {}; 256 256 tests.ipv6 = callTest tests/ipv6.nix {}; 257 257 tests.jenkins = callTest tests/jenkins.nix {}; 258 - tests.kde5 = callTest tests/kde5.nix {}; 258 + tests.plasma5 = callTest tests/plasma5.nix {}; 259 259 tests.keymap = callSubTests tests/keymap.nix {}; 260 260 tests.initrdNetwork = callTest tests/initrd-network.nix {}; 261 261 tests.keystone = callTest tests/keystone.nix {};
+2 -1
nixos/tests/kde5.nix nixos/tests/plasma5.nix
··· 17 17 user = "alice"; 18 18 }; 19 19 }; 20 - services.xserver.desktopManager.kde5.enable = true; 20 + services.xserver.desktopManager.plasma5.enable = true; 21 + services.xserver.desktopManager.default = "plasma5"; 21 22 virtualisation.writableStore = false; # FIXME 22 23 }; 23 24