Update the sway desktop manager fetching of home-manager to not use the cache'd version to prevent erroneous mismatch between different machines despite the same url and upstream channel
All checks were successful
Build Nix modules (dry-run) / build-modules (push) Successful in 5m24s

This commit is contained in:
Root User 2026-03-22 15:41:45 +01:00
parent 6c25a08515
commit 50e64761ee
Signed by: root
GPG key ID: 087F0A95E5766D72
3 changed files with 11 additions and 10 deletions

View file

@ -5,8 +5,8 @@
...
}: let
home-manager = builtins.fetchTarball {
url = "https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz";
sha256 = "069hh8az6v2bskdscaw17z5rks5zia21ay3p6sa5cii6abd9ify4";
url = "https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz?nocache=1";
sha256 = "WzBOBfSay3GYilUfKaUa1Mbf8/jtuAiJIedx7fWuIX4=";
};
cfg = config.services.forgejo;
srv = cfg.settings.server;