tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/tests: fix Plasma 5 test
Thomas Tuegel
9 years ago
0da421ce
80e883a7
+4
-3
3 changed files
expand all
collapse all
unified
split
nixos
release-combined.nix
release.nix
tests
plasma5.nix
+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
75
-
(all nixos.tests.kde5)
75
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
258
-
tests.kde5 = callTest tests/kde5.nix {};
258
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
20
-
services.xserver.desktopManager.kde5.enable = true;
20
20
+
services.xserver.desktopManager.plasma5.enable = true;
21
21
+
services.xserver.desktopManager.default = "plasma5";
21
22
virtualisation.writableStore = false; # FIXME
22
23
};
23
24