From 6c4454b1e8e76f05e27b6f4613c319478f9bd5c6 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Fri, 4 Jul 2025 16:23:40 -0500 Subject: [PATCH] bert: Automatically mount bigbird_public on startup --- bert/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bert/configuration.nix b/bert/configuration.nix index f4e97b4..e8a81a0 100644 --- a/bert/configuration.nix +++ b/bert/configuration.nix @@ -42,7 +42,11 @@ fileSystems."/mnt/bigbird_public" = { device = "//bigbird/public"; fsType = "cifs"; - options = [ "guest" ]; + options = [ + "x-systemd.automount" + "x-systemd.requires=network-online.target" + "guest" + ]; }; time.timeZone = "America/Chicago";