diff options
| -rw-r--r-- | hosts/himeji/default.nix | 18 | ||||
| -rw-r--r-- | hosts/himeji/options.nix | 14 |
2 files changed, 16 insertions, 16 deletions
diff --git a/hosts/himeji/default.nix b/hosts/himeji/default.nix index 9d3045d..ef52532 100644 --- a/hosts/himeji/default.nix +++ b/hosts/himeji/default.nix @@ -4,8 +4,22 @@ ./hardware-configuration.nix ../../modules/options ../../modules/server - ./options.nix ]; - system.stateVersion = "24.05"; + config = { + modules = { + nix.extend = false; + + containers = { + engine = "podman"; + + extraOptions = [ + "--restart=on-failure" + "--pull=newer" + ]; + }; + }; + + system.stateVersion = "24.05"; + }; } diff --git a/hosts/himeji/options.nix b/hosts/himeji/options.nix deleted file mode 100644 index 6d21e7b..0000000 --- a/hosts/himeji/options.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - config.modules = { - nix.extend = false; - - containers = { - engine = "podman"; - - extraOptions = [ - "--restart=on-failure" - "--pull=newer" - ]; - }; - }; -} |