From 06300756963b60cddd2911f8d56ff6cb663bf314 Mon Sep 17 00:00:00 2001 From: KnightArtorias Date: Sat, 13 Dec 2025 12:59:59 +0000 Subject: [PATCH] Add Steam disk --- hosts/physical/crow/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/physical/crow/default.nix b/hosts/physical/crow/default.nix index 6d4c4bb..bb0d9ea 100644 --- a/hosts/physical/crow/default.nix +++ b/hosts/physical/crow/default.nix @@ -23,4 +23,14 @@ }; networking.hostName = "crow"; + + fileSystems."/mnt/steam" = { + device = "/dev/disk/by-uuid/312227de-38a9-4475-9e46-fecc232f2002"; + fsType = "ext4"; + + options = [ + "users" + "nofail" + ]; + }; }