From c3fdeb6e9e193bcf8d98c398c7dd394142d78300 Mon Sep 17 00:00:00 2001 From: Haylin Moore Date: Fri, 11 Oct 2024 13:09:45 -0400 Subject: [PATCH] alice: add data disk --- hosts/alice.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/alice.nix b/hosts/alice.nix index fee6c81..e359c9d 100644 --- a/hosts/alice.nix +++ b/hosts/alice.nix @@ -14,7 +14,12 @@ { device = "/dev/disk/by-uuid/1aeaf426-9dec-40b8-b472-5785832444a6"; fsType = "ext4"; }; - + + fileSystems."/data" = + { device = "/dev/disk/by-uuid/9d1fc1f3-aeb8-4f08-aa08-814378052a90"; + fsType = "ext4"; + }; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; boot.loader.grub.enable = true;