forked from TUM-DSE/doctor-cluster-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdan.nix
More file actions
23 lines (19 loc) · 841 Bytes
/
dan.nix
File metadata and controls
23 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
imports = [
../modules/k3s/agent.nix
../modules/hardware/poweredge-r440.nix
../modules/disko-zfs.nix
../modules/disko-nfs-storage.nix
../modules/nfs/server-backup.nix
];
disko.rootDisk = "/dev/disk/by-id/nvme-Dell_Ent_NVMe_P5600_MU_U.2_1.6TB_PHAB1234003F1P9SGN";
# TODO: migrate to native mountpoints
disko.zfs.legacyMounts.enable = true;
disko.devices.disk.nfs-home.device = "/dev/disk/by-id/nvme-SAMSUNG_MZQL23T8HCLS-00A07_S64HNT0X115372";
disko.devices.disk.nfs-data-disk1.device = "/dev/disk/by-id/ata-Samsung_SSD_870_QVO_8TB_S5SSNJ0X300221P";
disko.devices.disk.nfs-data-disk2.device = "/dev/disk/by-id/ata-Samsung_SSD_870_QVO_8TB_S5SSNF0WC05521Z";
services.nfs-server.interface = "enp94s0f0np0";
networking.hostName = "dan";
simd.arch = "cascadelake";
system.stateVersion = "21.11";
}