summaryrefslogtreecommitdiff
path: root/hosts/himeji/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/himeji/configuration.nix')
-rw-r--r--hosts/himeji/configuration.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/hosts/himeji/configuration.nix b/hosts/himeji/configuration.nix
new file mode 100644
index 0000000..0d5fc9e
--- /dev/null
+++ b/hosts/himeji/configuration.nix
@@ -0,0 +1,28 @@
+{ self, ... }:
+{
+ imports = [
+ ./hardware-configuration.nix
+ "${self}/disks/himeji.nix"
+ "${self}/modules/core"
+ "${self}/modules/options"
+ "${self}/modules/server"
+ ];
+
+ config = {
+ networking.hostName = "himeji";
+ system.stateVersion = "24.05";
+
+ modules = {
+ nix.extend = false;
+
+ containers = {
+ engine = "podman";
+
+ extraOptions = [
+ "--restart=on-failure"
+ "--pull=newer"
+ ];
+ };
+ };
+ };
+}