summaryrefslogtreecommitdiff
path: root/hosts/himeji/default.nix
blob: 3c3727bc7cb2d7d9a2e68756343ddee81ea84e3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  imports = [
    ./hardware-configuration.nix
    ../../disks/himeji.nix
    ../../modules/core
    ../../modules/options
    ../../modules/server
  ];

  config = {
    networking.hostName = "himeji";
    system.stateVersion = "24.05";

    modules = {
      nix.extend = false;

      containers = {
        engine = "podman";

        extraOptions = [
          "--restart=on-failure"
          "--pull=newer"
        ];
      };
    };
  };
}