summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-20 05:45:43 -0700
committerFuwn <[email protected]>2024-09-20 05:45:43 -0700
commit9e5f5c54d9ca9e976541f65d2b76bb723a807aca (patch)
treee87c9ff000a04241bd4e48c041c0f66e47df4877 /hosts
parentmodules: server and core modules (diff)
downloadnixos-config-9e5f5c54d9ca9e976541f65d2b76bb723a807aca.tar.xz
nixos-config-9e5f5c54d9ca9e976541f65d2b76bb723a807aca.zip
server: modular container engine
Diffstat (limited to 'hosts')
-rw-r--r--hosts/himeji/default.nix2
-rw-r--r--hosts/himeji/options.nix7
2 files changed, 7 insertions, 2 deletions
diff --git a/hosts/himeji/default.nix b/hosts/himeji/default.nix
index 94adf70..9d3045d 100644
--- a/hosts/himeji/default.nix
+++ b/hosts/himeji/default.nix
@@ -1,9 +1,9 @@
{
imports = [
- ../../modules/server
../../disks/himeji.nix
./hardware-configuration.nix
../../modules/options
+ ../../modules/server
./options.nix
];
diff --git a/hosts/himeji/options.nix b/hosts/himeji/options.nix
index d8e2298..ed067da 100644
--- a/hosts/himeji/options.nix
+++ b/hosts/himeji/options.nix
@@ -1 +1,6 @@
-{ config.modules.nix.extend = false; }
+{
+ config.modules = {
+ nix.extend = false;
+ server.containerEngine = "podman";
+ };
+}