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";