Don't run nomad on chilly.

This commit is contained in:
2024-08-05 06:29:40 +01:00
parent 978121c75e
commit f565b56a5e
3 changed files with 15 additions and 9 deletions

13
common/base-node.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
imports = [
./cifs-client.nix
./consul.nix
./glusterfs-client.nix
./impermanence.nix
./sshd.nix
./user-ppetru.nix
./unattended-encryption.nix
./systemd-boot.nix
];
}

View File

@@ -1,16 +1,9 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [ imports = [
./cifs-client.nix ./base-node.nix
./consul.nix
./glusterfs.nix ./glusterfs.nix
./glusterfs-client.nix
./impermanence.nix
./nomad.nix ./nomad.nix
./sshd.nix
./user-ppetru.nix
./unattended-encryption.nix
./syncthing-data.nix ./syncthing-data.nix
./systemd-boot.nix
]; ];
} }

View File

@@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../../common/global ../../common/global
../../common/compute-node.nix ../../common/base-node.nix
./disk-config.nix ./disk-config.nix
./hardware.nix ./hardware.nix
]; ];