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

@ -18,7 +18,7 @@ TODO HECK
- [x] Find a more clean way to store initial passwords (.env??) -> [nix-sops](https://github.com/Mic92/sops-nix) - [x] Find a more clean way to store initial passwords (.env??) -> [nix-sops](https://github.com/Mic92/sops-nix)
- [x] Create proper build automation scripts -> Needs to be properly done. - [x] Create proper build automation scripts -> Needs to be properly done.
- [ ] Attach more NixOS weblinks... - [ ] Attach more NixOS weblinks...
- [ ] Update Forgejo Styling - [x] Update Forgejo Styling
- [x] Figure out what the ***hecc*** to do with SSL Certifications in the most elegant way -> Use Traefik - [x] Figure out what the ***hecc*** to do with SSL Certifications in the most elegant way -> Use Traefik
- [x] Add Git Actions to Forgejo -> It was already added, just need to setup the CI itself. - [x] Add Git Actions to Forgejo -> It was already added, just need to setup the CI itself.
- [x] Setup the CI backend. - [x] Setup the CI backend.
@ -26,8 +26,9 @@ TODO HECK
- [ ] Read up more about how to a backup machine stuff and making it Nix-y... - [ ] Read up more about how to a backup machine stuff and making it Nix-y...
- [ ] Figure out my life - [ ] Figure out my life
- [ ] Setup Hardware Keys - [ ] Setup Hardware Keys
- [x] Setup a VPN - [ ] Setup a VPN, needs to be setup as module
- [ ] Setup Alejandra pre-commit hook - [ ] Setup Alejandra pre-commit hook
- [ ] Document the need to do `nix flake update` when the home-manager flake version mismatch gets too apparent.
## NOTES FOR FUTURE ## NOTES FOR FUTURE

12
flake.lock generated
View file

@ -23,11 +23,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1773802295, "lastModified": 1774060651,
"narHash": "sha256-luPLLgS8VR2fHo3xT04KbJm0RU2wep6SDh3smwF8e5E=", "narHash": "sha256-sZiam+rmNcOZGnlbnqDD9oTwfMdQUM+uQmFqqSoe194=",
"owner": "Infinidoge", "owner": "Infinidoge",
"repo": "nix-minecraft", "repo": "nix-minecraft",
"rev": "41870283e080c46a6d33b6c3b3923e90348254c3", "rev": "46727bd27d32d63069ed26a690554373ae2b4702",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -54,11 +54,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1770770419, "lastModified": 1773964973,
"narHash": "sha256-iKZMkr6Cm9JzWlRYW/VPoL0A9jVKtZYiU4zSrVeetIs=", "narHash": "sha256-NV/J+tTER0P5iJhUDL/8HO5MDjDceLQPRUYgdmy5wXw=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6c5e707c6b5339359a9a9e215c5e66d6d802fd7a", "rev": "812b3986fd1568f7a858f97fcf425ad996ba7d25",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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