nixos/tests: fix Plasma 5 test

This commit is contained in:
Thomas Tuegel 2017-02-28 19:09:56 -06:00
parent 80e883a7c3
commit 0da421ce17
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59
3 changed files with 4 additions and 3 deletions

View file

@ -72,7 +72,7 @@ in rec {
(all nixos.tests.ecryptfs)
(all nixos.tests.ipv6)
(all nixos.tests.i3wm)
(all nixos.tests.kde5)
(all nixos.tests.plasma5)
#(all nixos.tests.lightdm)
(all nixos.tests.login)
(all nixos.tests.misc)

View file

@ -255,7 +255,7 @@ in rec {
tests.influxdb = callTest tests/influxdb.nix {};
tests.ipv6 = callTest tests/ipv6.nix {};
tests.jenkins = callTest tests/jenkins.nix {};
tests.kde5 = callTest tests/kde5.nix {};
tests.plasma5 = callTest tests/plasma5.nix {};
tests.keymap = callSubTests tests/keymap.nix {};
tests.initrdNetwork = callTest tests/initrd-network.nix {};
tests.keystone = callTest tests/keystone.nix {};

View file

@ -17,7 +17,8 @@ import ./make-test.nix ({ pkgs, ...} :
user = "alice";
};
};
services.xserver.desktopManager.kde5.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
services.xserver.desktopManager.default = "plasma5";
virtualisation.writableStore = false; # FIXME
};