From 23597d7b94c959d677d9cf8e0cc0cde8db42fb22 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Tue, 30 Jun 2026 02:02:13 -0400 Subject: [PATCH] Add ext4 mount for Steam games library --- hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 5096808..64e2447 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -27,6 +27,12 @@ options = [ "fmask=0022" "dmask=0022" ]; }; + fileSystems."/srv/steam" = { + device = "/dev/disk/by-label/STEAMGAMES"; + fsType = "ext4"; + options = [ "noatime" "nofail" ]; + }; + swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";