drives helix and broot

This commit is contained in:
RootHost-Stormwind
2025-04-07 12:45:31 +02:00
parent 6e76f581c0
commit da0535eb09
8 changed files with 172 additions and 20 deletions

29
drives.nix Normal file
View File

@@ -0,0 +1,29 @@
{ ... }:
{
fileSystems = {
"/mnt/nethergarde/windblows" = {
device = "10.94.157.2:/mnt/Nethergarde/Windows";
fsType = "nfs";
};
"/mnt/nethergarde/bigdata" = {
device = "10.94.157.2:/mnt/Nethergarde/Bigdata";
fsType = "nfs";
};
"/mnt/nethergarde/nextcloud" = {
device = "10.94.157.2:/mnt/Nethergarde/New-Nextcloud";
fsType = "nfs";
};
"/" = {
device = "/dev/disk/by-uuid/f8ce741e-1a4d-469d-bc6c-0777c1c84423";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/802B-4F26";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
};
}