Good day,
I’m running on the latest NisOS unstable and trying to install the new Floating Dock extension for Gnome 40+ by adding the following to my configuration.nix
:
environment.systemPackages = with pkgs; [
# skipped some lines
gnomeExtensions.floating-dock
];
However it installs another, old & incompatible extension from here.
Looking at nixpkgs github I see that override has been merged 5 days ago, however even with freshly running nix-channel --update && nixos-rebuild switch --upgrade
I still get the old extension. I tried to install floating-dock-2
(which should be the now old extension based on the above commit) but nix doesn’t find it.
Is there some cache trick that I’m missing here?
P.S. My full configuration.nix
is here.