diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/himeji/options.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/hosts/himeji/options.nix b/hosts/himeji/options.nix index fd2edb9..77fc36c 100644 --- a/hosts/himeji/options.nix +++ b/hosts/himeji/options.nix @@ -1,7 +1,10 @@ { config.modules = { nix.extend = false; - server.containerEngine = "podman"; - containers.extraOptions = [ "--restart=on-failure" ]; + + containers = { + engine = "podman"; + extraOptions = [ "--restart=on-failure" ]; + }; }; } |