From 005229178d904e08376392f15a4e5432997b1754 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Wed, 15 Nov 2023 20:35:39 +0100 Subject: [PATCH] feat: mount games to mnt --- hosts/desktop-clotho/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/desktop-clotho/hardware-configuration.nix b/hosts/desktop-clotho/hardware-configuration.nix index 274d5a3..d030cad 100644 --- a/hosts/desktop-clotho/hardware-configuration.nix +++ b/hosts/desktop-clotho/hardware-configuration.nix @@ -35,6 +35,12 @@ options = [ "bind" ]; }; + fileSystems."/mnt/games" = + { device = "/data/Linux/Games"; + fsType = "none"; + options = [ "bind" ]; + }; + swapDevices = [ { device = "/dev/disk/by-label/swap"; } ]; -- 2.48.1