forked from mirrors/nixpkgs
nixos/tests: fix Plasma 5 test
This commit is contained in:
parent
80e883a7c3
commit
0da421ce17
|
@ -72,7 +72,7 @@ in rec {
|
||||||
(all nixos.tests.ecryptfs)
|
(all nixos.tests.ecryptfs)
|
||||||
(all nixos.tests.ipv6)
|
(all nixos.tests.ipv6)
|
||||||
(all nixos.tests.i3wm)
|
(all nixos.tests.i3wm)
|
||||||
(all nixos.tests.kde5)
|
(all nixos.tests.plasma5)
|
||||||
#(all nixos.tests.lightdm)
|
#(all nixos.tests.lightdm)
|
||||||
(all nixos.tests.login)
|
(all nixos.tests.login)
|
||||||
(all nixos.tests.misc)
|
(all nixos.tests.misc)
|
||||||
|
|
|
@ -255,7 +255,7 @@ in rec {
|
||||||
tests.influxdb = callTest tests/influxdb.nix {};
|
tests.influxdb = callTest tests/influxdb.nix {};
|
||||||
tests.ipv6 = callTest tests/ipv6.nix {};
|
tests.ipv6 = callTest tests/ipv6.nix {};
|
||||||
tests.jenkins = callTest tests/jenkins.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.keymap = callSubTests tests/keymap.nix {};
|
||||||
tests.initrdNetwork = callTest tests/initrd-network.nix {};
|
tests.initrdNetwork = callTest tests/initrd-network.nix {};
|
||||||
tests.keystone = callTest tests/keystone.nix {};
|
tests.keystone = callTest tests/keystone.nix {};
|
||||||
|
|
|
@ -17,7 +17,8 @@ import ./make-test.nix ({ pkgs, ...} :
|
||||||
user = "alice";
|
user = "alice";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.xserver.desktopManager.kde5.enable = true;
|
services.xserver.desktopManager.plasma5.enable = true;
|
||||||
|
services.xserver.desktopManager.default = "plasma5";
|
||||||
virtualisation.writableStore = false; # FIXME
|
virtualisation.writableStore = false; # FIXME
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue