initial git connection

This commit is contained in:
2025-12-13 17:11:31 -05:00
commit 5daefd2302
7 changed files with 284 additions and 0 deletions

54
filesystem.nix Normal file
View File

@@ -0,0 +1,54 @@
{ config, lib, pkgs, ... }:
let
username = "brian";
uid = 1000;
gid = 100;
secrets = import ./secrets.nix;
networkShares = [
{
name = "seagate8tb";
device = "//10.0.0.128/PublicShare";
mountPoint = "/mnt/smb-seagate8tb";
}
{
name = "wd4tb";
device = "//10.0.0.65/wd4tb";
mountPoint = "/mnt/smb-wd4tb";
}
{
name = "stashapp";
device = "//10.0.0.65/stashapp";
mountPoint = "/mnt/smb-app";
}
];
networkFileSystems = builtins.listToAttrs (map (share: {
name = share.mountPoint;
value = {
device = share.device;
fsType = "cifs";
options = [
"username=${secrets."${share.name}Username"}"
"password=${secrets."${share.name}Password"}"
"uid=${toString uid}"
"gid=${toString gid}"
"file_mode=0775"
"dir_mode=0775"
"nofail" # <<< ADDED: Don't fail boot if network is down
"_netdev" # <<< ADDED: Wait for network
];
};
}) networkShares);
in
{
# Only network shares - NO NVMe for now
fileSystems = networkFileSystems;
# Create symlinks in home directory for easy access
systemd.tmpfiles.rules = map (share:
"L+ /home/${username}/${share.name} - - - - ${share.mountPoint}"
) networkShares;
}