From f0cf26941d049a7b914606c03e55ca651b1204c2 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Mon, 28 Oct 2024 23:50:09 +0530 Subject: [PATCH] rico1: move ssd from rico0 --- hosts/rico0/hardware/filesystem.nix | 6 ------ hosts/rico1/hardware/filesystem.nix | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hosts/rico0/hardware/filesystem.nix b/hosts/rico0/hardware/filesystem.nix index 00b1b3b..a654d61 100644 --- a/hosts/rico0/hardware/filesystem.nix +++ b/hosts/rico0/hardware/filesystem.nix @@ -31,12 +31,6 @@ _: { options = [ "subvol=/" "compress-force=zstd" "noatime" ]; }; - "/mnt/data" = { - device = "/dev/disk/by-partlabel/DATA0"; - fsType = "btrfs"; - options = [ "subvol=/" "compress-force=zstd" "noatime" "nofail" "x-systemd.automount" "x-systemd.device-timeout=5" ]; - }; - "/boot" = { device = "/dev/disk/by-partlabel/RICO0_BOOT"; fsType = "vfat"; diff --git a/hosts/rico1/hardware/filesystem.nix b/hosts/rico1/hardware/filesystem.nix index e4e46d0..6c783d7 100644 --- a/hosts/rico1/hardware/filesystem.nix +++ b/hosts/rico1/hardware/filesystem.nix @@ -31,6 +31,12 @@ _: { options = [ "subvol=/" "compress-force=zstd" "noatime" ]; }; + "/mnt/data" = { + device = "/dev/disk/by-partlabel/DATA0"; + fsType = "btrfs"; + options = [ "subvol=/" "compress-force=zstd" "noatime" "nofail" "x-systemd.automount" "x-systemd.device-timeout=5" ]; + }; + "/boot" = { device = "/dev/disk/by-partlabel/RICO1_BOOT"; fsType = "vfat";