From df761236826ca056f90dded4888e963e0cbbeaee Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Fri, 3 Oct 2025 18:55:10 -0400 Subject: [PATCH] earthmover: add config for extra internal ssd --- hosts/Earthmover/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/hosts/Earthmover/default.nix b/hosts/Earthmover/default.nix index 7a7047f..7487a02 100755 --- a/hosts/Earthmover/default.nix +++ b/hosts/Earthmover/default.nix @@ -11,6 +11,24 @@ ../../modules/nixos/mumble.nix ]; + fileSystems = { + "/mnt/internal-nvme" = { + device = "/dev/disk/by-id/nvme-XF-1TB_2280_9I50708000130_1"; + fsType = "btrfs"; + options = [ "compress=zstd" ]; + }; + + "/mnt/internal-nvme/steam" = { + device = "/dev/disk/by-id/nvme-XF-1TB_2280_9I50708000130_1"; + fsType = "btrfs"; + options = [ + "subvol=steam" + "compress=zstd" + "noatime" + ]; + }; + }; + home-manager.users.wo2w = { imports = [ ../../modules/home