jungle/m/hut/configuration.nix

34 lines
729 B
Nix
Raw Normal View History

2023-09-04 22:09:40 +02:00
{ config, pkgs, ... }:
2023-03-31 18:27:25 +02:00
{
imports = [
2023-04-18 18:27:08 +02:00
../common/main.nix
2023-03-31 18:27:25 +02:00
../module/ceph.nix
../module/debuginfod.nix
2023-03-31 18:27:25 +02:00
./gitlab-runner.nix
2023-04-05 17:00:01 +02:00
./monitoring.nix
2023-04-06 13:57:32 +02:00
./nfs.nix
./slurm-daemon.nix
2023-09-12 12:19:43 +02:00
./nix-serve.nix
2023-08-25 13:21:00 +02:00
#./pxe.nix
2023-08-23 17:42:50 +02:00
];
boot.binfmt.emulatedSystems = [ "aarch64-linux" "powerpc64le-linux" "riscv64-linux" ];
# Select the this using the ID to avoid mismatches
boot.loader.grub.device = "/dev/disk/by-id/ata-INTEL_SSDSC2BB240G7_PHDV6462004Y240AGN";
networking = {
2023-06-14 11:15:00 +02:00
hostName = "hut";
interfaces.eno1.ipv4.addresses = [ {
address = "10.0.40.7";
prefixLength = 24;
} ];
interfaces.ibp5s0.ipv4.addresses = [ {
address = "10.0.42.7";
prefixLength = 24;
} ];
};
2023-03-31 18:27:25 +02:00
}