Hi there, I have a number of dconf settings I am setting in my nix code. For example enabling my gnome extensions.
"org/gnome/shell" = {
enabled-extensions =
"['quick-settings-audio-panel@rayzeq.github.io', 'unite@hardpixel.eu', 'appindicatorsupport@rgcjonas.gmail.com', 'bluetooth-quick-connect@bjarosze.gmail.com', 'blur-my-shell@aunetx', 'just-perfection-desktop@just-perfection', 'user-theme@gnome-shell-extensions.gcampax.github.com']";
};
Now after I run a rebuild without errors, I notice all my extensions are disabled. If I look in dconf editor I see it labeled as the default settings:
But at the same time if I run a dconf dump
, I get the following:
λ dconf dump /org/gnome/shell/
[/]
command-history=['Ig', 'lh', 'lgt', 'lg']
disabled-extensions=['hidetopbar@mathieu.bidon.ca']
enabled-extensions="['quick-settings-audio-panel@rayzeq.github.io', 'unite@hardpixel.eu', 'appindicatorsupport@rgcjonas.gmail.com', 'bluetooth-quick-connect@bjarosze.gmail.com', 'blur-my-shell@aunetx', 'just-perfection-desktop@just-perfection', 'user-theme@gnome-shell-extensions.gcampax.github.com']"
favorite-apps=['chromium-browser.desktop', 'code.desktop', 'org.gnome.Console.desktop', 'org.gnome.Nautilus.desktop', '1password.desktop', 'Zoom.desktop']
last-selected-power-profile='power-saver'
looking-glass-history=['sdfgsdf']
welcome-dialog-last-shown-version='44.1'
Has anyone seen this before?