Prevent containers from running non-container services
All checks were successful
Check Flake / check-flake (push) Successful in 2m21s
Auto Update Flake / auto-update (push) Successful in 3m29s

This commit is contained in:
2026-02-22 18:18:05 -08:00
parent 4cf50b5fb1
commit 684851d641
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ let
in
lib.mkMerge [
# configure builder
(lib.mkIf thisMachineIsABuilder {
(lib.mkIf (thisMachineIsABuilder && !config.boot.isContainer) {
users.users.${builderUserName} = {
description = "Distributed Nix Build User";
group = builderUserName;