···84 type = types.package;
85 default = pkgs.krb5Full;
86 defaultText = "pkgs.krb5Full";
87- example = literalExample "pkgs.heimdalFull";
88 description = ''
89 The Kerberos implementation that will be present in
90 <literal>environment.systemPackages</literal> after enabling this
···84 type = types.package;
85 default = pkgs.krb5Full;
86 defaultText = "pkgs.krb5Full";
87+ example = literalExample "pkgs.heimdal";
88 description = ''
89 The Kerberos implementation that will be present in
90 <literal>environment.systemPackages</literal> after enabling this
···24 ln -s vda1 /dev/xvda1
25 '';
260000027 # Needed by nixos-rebuild due to the lack of network
28 # access. Determined by trial and error.
29 system.extraDependencies = with pkgs; ( [
···24 ln -s vda1 /dev/xvda1
25 '';
2627+ # In a NixOS test the serial console is occupied by the "backdoor"
28+ # (see testing/test-instrumentation.nix) and is incompatible with
29+ # the configuration in virtualisation/amazon-image.nix.
30+ systemd.services."serial-getty@ttyS0".enable = mkForce false;
31+32 # Needed by nixos-rebuild due to the lack of network
33 # access. Determined by trial and error.
34 system.extraDependencies = with pkgs; ( [
···42 # DO NOT COPY THIS TO PRODUCTION AS IS. Think about it at least twice.
43 # Everyone on the "isp" machine will be able to add routes to the kernel.
44 security.wrappers.add-dhcpd-lease = {
0045 source = pkgs.writeShellScript "add-dhcpd-lease" ''
46 exec ${pkgs.iproute2}/bin/ip -6 route replace "$1" via "$2"
47 '';
···42 # DO NOT COPY THIS TO PRODUCTION AS IS. Think about it at least twice.
43 # Everyone on the "isp" machine will be able to add routes to the kernel.
44 security.wrappers.add-dhcpd-lease = {
45+ owner = "root";
46+ group = "root";
47 source = pkgs.writeShellScript "add-dhcpd-lease" ''
48 exec ${pkgs.iproute2}/bin/ip -6 route replace "$1" via "$2"
49 '';
+1-1
nixos/tests/tigervnc.nix
···6with import ../lib/testing-python.nix { inherit system pkgs; };
7makeTest {
8 name = "tigervnc";
9- meta = with pkgs.stdenv.lib.maintainers; {
10 maintainers = [ lheckemann ];
11 };
12
···6with import ../lib/testing-python.nix { inherit system pkgs; };
7makeTest {
8 name = "tigervnc";
9+ meta = with pkgs.lib.maintainers; {
10 maintainers = [ lheckemann ];
11 };
12