summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/himeji/configuration.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/himeji/configuration.nix b/hosts/himeji/configuration.nix
index d4c6044..05362ff 100644
--- a/hosts/himeji/configuration.nix
+++ b/hosts/himeji/configuration.nix
@@ -1,4 +1,4 @@
-{ self, ... }:
+{ config, self, ... }:
{
imports = [
./hardware-configuration.nix
@@ -20,7 +20,7 @@
extraOptions = [
"--restart=on-failure"
- "--pull=newer"
+ "--pull=${if config.modules.containers.engine == "podman" then "newer" else "always"}"
];
};
};