Archived
1
0
forked from rarias/bscpkgs

Create specific SSF rack configuration

Allow xeon machines to optionally inherit SSF configuration such as the
NFS mount point and the network configuration.

Reviewed-by: Aleix Boné <abonerib@bsc.es>
This commit is contained in:
2025-06-02 12:22:41 +02:00
parent e9e3704b67
commit e13288fc29
12 changed files with 17 additions and 11 deletions

8
m/common/ssf/fs.nix Normal file
View File

@@ -0,0 +1,8 @@
{
# Mount the home via NFS
fileSystems."/home" = {
device = "10.0.40.30:/home";
fsType = "nfs";
options = [ "nfsvers=3" "rsize=1024" "wsize=1024" "cto" "nofail" ];
};
}