Can't seem to add gnome extensions from nixos conf

Hello, I have the following lines in my nixos conf,

  environment.systemPackages = with pkgs; [
    wget
    micro
    git
    gnome-extension-manager
	gnomeExtensions.dash-to-dock
  ];

I take dash-to-dock as an example but It doesn’t seem to work. rebuilds fine but It doesn’t show up in the extension manager.

Installing extensions through environment.systemPackages requires restart of GNOME Shell. On Wayland session, you will need to re-log in; on X11, you can press Alt-F2, enter r and press Enter key to restart without logging out.

2 Likes

That did it, thank you!