fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1diff --git a/editor/source-manager.vala b/editor/source-manager.vala
2index 27b2b17a..87f7ba86 100644
3--- a/editor/source-manager.vala
4+++ b/editor/source-manager.vala
5@@ -121,6 +121,9 @@ private class SourceManager : Object
6 source = try_prepend_dir (source, Path.build_filename (system_data_dirs [i], "glib-2.0", "schemas"));
7 string user_data_dir = GLib.Environment.get_user_data_dir ();
8 source = try_prepend_dir (source, Path.build_filename (user_data_dir, "glib-2.0", "schemas"));
9+ string? nix_var_schema_dir = GLib.Environment.get_variable ("NIX_GSETTINGS_OVERRIDES_DIR");
10+ if (nix_var_schema_dir != null)
11+ source = try_prepend_dir (source, (!) nix_var_schema_dir);
12 string? var_schema_dir = GLib.Environment.get_variable ("GSETTINGS_SCHEMA_DIR");
13 if (var_schema_dir != null) {
14 string[] extra_schema_dirs = ((!) var_schema_dir).split (Path.SEARCHPATH_SEPARATOR_S);