From 8afcc0b65e9d4ce950478e5635a55444c5a46d89 Mon Sep 17 00:00:00 2001 From: C4 Patino Date: Wed, 3 Jun 2026 15:13:21 -0500 Subject: [PATCH] feat: add mount for /mnt/gias to mount //file006/GIAS network share --- systems/x86_64-linux/mutualofomaha/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/systems/x86_64-linux/mutualofomaha/default.nix b/systems/x86_64-linux/mutualofomaha/default.nix index b0520f9..912c853 100644 --- a/systems/x86_64-linux/mutualofomaha/default.nix +++ b/systems/x86_64-linux/mutualofomaha/default.nix @@ -53,6 +53,12 @@ in { "${inputs.self}/secrets/crypt/ssl/zscaler.crt" ]; + fileSystems."/mnt/gias" = { + device = "//file006/GIAS"; + fsType = "drvfs"; + options = ["metadata" "uid=1000" "gid=100" "umask=022"]; + }; + networking = { resolvconf.enable = mkForce false;