From 401ec1f7c12fbbb25eefaf1ceea63b6408265d6a Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Sun, 9 May 2021 10:37:02 -0400 Subject: [PATCH] add compute node fs --- machines/compute/common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/machines/compute/common.nix b/machines/compute/common.nix index 42c3185..0f78e95 100644 --- a/machines/compute/common.nix +++ b/machines/compute/common.nix @@ -10,6 +10,13 @@ # Enables the generation of /boot/extlinux/extlinux.conf boot.loader.generic-extlinux-compatible.enable = true; + fileSystems = { + "/" = { + device = "/dev/disk/by-label/NIXOS_SD"; + fsType = "ext4"; + }; + }; + nix.flakes.enable = true; networking.interfaces.eth0.useDHCP = true;