jungle/xeon07/configuration.nix

25 lines
468 B
Nix
Raw Normal View History

2023-03-31 18:27:25 +02:00
{ config, pkgs, ... }:
{
imports = [
2023-04-18 18:27:08 +02:00
../common/main.nix
2023-03-31 18:27:25 +02:00
./gitlab-runner.nix
2023-04-05 17:00:01 +02:00
./monitoring.nix
2023-03-31 18:27:25 +02:00
./net.nix
2023-04-06 13:57:32 +02:00
./nfs.nix
./overlays.nix
2023-04-03 12:51:44 +02:00
./slurm.nix
2023-03-31 18:27:25 +02:00
./ssh.nix
2023-04-05 17:04:42 +02:00
<agenix/modules/age.nix>
2023-03-31 18:27:25 +02:00
];
# Select the this using the ID to avoid mismatches
boot.loader.grub.device = "/dev/disk/by-id/ata-INTEL_SSDSC2BB240G7_PHDV6462004Y240AGN";
2023-03-31 18:27:25 +02:00
environment.systemPackages = with pkgs; [
2023-04-05 17:04:42 +02:00
(pkgs.callPackage <agenix/pkgs/agenix.nix> {})
2023-03-31 18:27:25 +02:00
];
}