···11+diff --git a/libbrasero-burn/burn-plugin.c b/libbrasero-burn/burn-plugin.c
22+index f97bc5f..88e9d35 100644
33+--- a/libbrasero-burn/burn-plugin.c
44++++ b/libbrasero-burn/burn-plugin.c
55+@@ -221,21 +221,10 @@ brasero_plugin_test_app (BraseroPlugin *plugin,
66+ return;
77+ }
88+99+- /* make sure that's not a symlink pointing to something with another
1010+- * name like wodim.
1111+- * NOTE: we used to test the target and see if it had the same name as
1212+- * the symlink with GIO. The problem is, when the symlink pointed to
1313+- * another symlink, then GIO didn't follow that other symlink. And in
1414+- * the end it didn't work. So forbid all symlink. */
1515+- if (g_file_test (prog_path, G_FILE_TEST_IS_SYMLINK)) {
1616+- brasero_plugin_add_error (plugin,
1717+- BRASERO_PLUGIN_ERROR_SYMBOLIC_LINK_APP,
1818+- name);
1919+- g_free (prog_path);
2020+- return;
2121+- }
2222++ /* disable symlink check on nixos */
2323++
2424+ /* Make sure it's a regular file */
2525+- else if (!g_file_test (prog_path, G_FILE_TEST_IS_REGULAR)) {
2626++ if (!g_file_test (prog_path, G_FILE_TEST_IS_REGULAR)) {
2727+ brasero_plugin_add_error (plugin,
2828+ BRASERO_PLUGIN_ERROR_MISSING_APP,
2929+ name);