Closed SomeoneWeird closed 1 month ago
This prevents any pup containers from starting if we're booting into recovery mode.
TODO:
dbx is-recovery-mode
false
dbx
This requires another security wrapper in your /etc/nixos/configuration.nix, hopefully the last one.
/etc/nixos/configuration.nix
security.wrappers.dbx = { source = "/Users/adam/code/doge/dogeboxd/build/dbx"; owner = "adam"; group = "users"; };
Where source & owner are updated.
source
owner
This prevents any pup containers from starting if we're booting into recovery mode.
TODO:
dbx is-recovery-mode
returnsfalse
even ifdbx
is currently in recovery mode, but is not scheduled to be next boot. Will fix.This requires another security wrapper in your
/etc/nixos/configuration.nix
, hopefully the last one.Where
source
&owner
are updated.