12
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 11 Aug 2025
12 points (100.0% liked)
Nix / NixOS
2851 readers
1 users here now
Main links
Videos
founded 3 years ago
MODERATORS
Do you know of a complete example or live config I could read through as a reference for that first method recommended?
I'd also be interested in complete examples for a working pair of remote builder and local client (both NixOS multi user), as all the documentation I've come across thus far are either:
intent on modifying root ssh configs in spite of security practices
botch use of substituters on the remote builder
is awkward or incompatible with non-interactive sudo sessions
works for nixos build but not to switch
https://nix.dev/manual/nix/2.30/advanced-topics/distributed-builds
https://wiki.nixos.org/wiki/Distributed_build
https://discourse.nixos.org/t/nixos-rebuild-use-remote-sudo-prompts-me-for-a-password-3-times/56003
https://discourse.nixos.org/t/remote-nixos-rebuild-works-with-build-but-not-with-switch/34741
I don't have an exact example to hand because I'm not using a custom substituter for now. I have a remnant of that in my config still, here: https://github.com/balsoft/nixos-config/blob/master/flake.nix#L5 . But it should be relatively straightforward: add
nix.settings.trusted-substituters = [ "http://your-substituter/" ];to your (client device) NixOS config (e.g. inconfiguration.nix); addnixConfig.extra-substituters = [ "http://your-substituter/" ];to your configflake.nix; answeryeswhen prompted bynixos-rebuild, and you should be good.As for remote builders, I don't really dig them myself. They require fully trusting all users who wish to build on them and are finicky to set up. Instead I just
sshinto the build machine, build whatever I need there, andnix copyit back to my laptop. That said,You can set up your nix-daemon to run as its own user nowadays, mitigating all issues related to root entirely.
Never had this issue so don't really know how to help
This one is pretty much unfixable due to how remote building works
You should probably use
nixos-rebuild switch --use-remote-sudoand run it as your user rather than root.