···42424343 config = lib.mkIf cfg.enable {
44444545- # Note: LIRC executables raises a warning, if lirc_options.conf do not exists
4545+ # Note: LIRC executables raises a warning, if lirc_options.conf does not exist
4646 environment.etc."lirc/lirc_options.conf".text = cfg.options;
47474848 passthru.lirc.socket = "/run/lirc/lircd";
+1-1
nixos/modules/virtualisation/qemu-vm.nix
···129129 NIX_DISK_IMAGE=$(readlink -f "''${NIX_DISK_IMAGE:-${toString config.virtualisation.diskImage}}") || test -z "$NIX_DISK_IMAGE"
130130131131 if test -n "$NIX_DISK_IMAGE" && ! test -e "$NIX_DISK_IMAGE"; then
132132- echo "Disk image do not exist, creating the virtualisation disk image..."
132132+ echo "Disk image does not exist, creating the virtualisation disk image..."
133133134134 ${
135135 if (cfg.useBootLoader && cfg.useDefaultFilesystems) then
+1-1
nixos/tests/bird.nix
···124124 host1.wait_until_succeeds("ip --json -6 r | jq -e 'map(select(.dst == \"fdff::2\")) | any'")
125125 host2.wait_until_succeeds("ip --json -6 r | jq -e 'map(select(.dst == \"fdff::1\")) | any'")
126126127127- with subtest("Check fake routes in preCheckConfig do not exists"):
127127+ with subtest("Check fake routes in preCheckConfig do not exist"):
128128 host1.fail("ip --json r | jq -e 'map(select(.dst == \"1.2.3.4\")) | any'")
129129 host2.fail("ip --json r | jq -e 'map(select(.dst == \"1.2.3.4\")) | any'")
130130
+1-1
nixos/tests/containers-tmpfs.nix
···7979 with subtest(
8080 "files created in the hosts container dir in a path where a tmpfs "
8181 + "file system has been mounted are not visible to the container as "
8282- + "the do not exist in the tmpfs"
8282+ + "they do not exist in the tmpfs"
8383 ):
8484 machine.succeed(
8585 "touch /var/lib/nixos-containers/tmpfs/var/test.file",