2025-10-01 19:51:55 -05:00
|
|
|
{
|
|
|
|
|
flake,
|
|
|
|
|
config,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
let
|
2025-10-01 20:27:07 -05:00
|
|
|
inherit (flake.config.people) user0;
|
|
|
|
|
inherit (flake.config.machines.devices) deimos synology ceres;
|
|
|
|
|
inherit (flake.config.services) instances;
|
2025-10-01 19:51:55 -05:00
|
|
|
|
|
|
|
|
synologySecrets = config.sops.secrets."network/synology".path;
|
|
|
|
|
ceresSecrets = config.sops.secrets."network/server".path;
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
fileSystems =
|
|
|
|
|
let
|
|
|
|
|
synologyDrives = [
|
|
|
|
|
"folder0"
|
|
|
|
|
"folder1"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
sambaDrives = [
|
|
|
|
|
"samba0"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
remoteDrives = [
|
|
|
|
|
"remote0"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
remoteFolders = [
|
2025-10-01 20:27:07 -05:00
|
|
|
instances.audiobookshelf.name
|
|
|
|
|
instances.jellyfin.name
|
|
|
|
|
instances.comfyui.name
|
|
|
|
|
instances.opencloud.name
|
2025-10-01 19:51:55 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
synologyMounts = synologyDrive: {
|
|
|
|
|
name = "${synology.${synologyDrive}.mount}";
|
|
|
|
|
value = {
|
|
|
|
|
device = synology.${synologyDrive}.device;
|
|
|
|
|
fsType = "cifs";
|
|
|
|
|
options = synology.${synologyDrive}.options ++ [
|
|
|
|
|
"credentials=${synologySecrets}"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sambaMounts = sambaDrive: folder: {
|
|
|
|
|
name = "${ceres.${sambaDrive}.mount}/${folder}";
|
|
|
|
|
value = {
|
|
|
|
|
device = "${ceres.${sambaDrive}.device}/${folder}";
|
|
|
|
|
fsType = "cifs";
|
|
|
|
|
options = ceres.${sambaDrive}.options ++ [
|
|
|
|
|
"credentials=${ceresSecrets}"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sshfsMounts = sshfsDrive: folder: {
|
|
|
|
|
name = "${ceres.${sshfsDrive}.mount}/${folder}";
|
|
|
|
|
value = {
|
|
|
|
|
device = "${ceres.${sshfsDrive}.device}/${folder}";
|
|
|
|
|
fsType = "sshfs";
|
|
|
|
|
options = ceres.${sshfsDrive}.options;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
"/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/c9a82c93-1da4-4cd1-a1fa-26483271a2bb";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
"/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/71CA-765A";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
options = deimos.boot.options;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
// (builtins.listToAttrs (map synologyMounts synologyDrives))
|
|
|
|
|
// (builtins.listToAttrs (
|
|
|
|
|
builtins.concatMap (drive: map (folder: sambaMounts drive folder) remoteFolders) sambaDrives
|
|
|
|
|
))
|
|
|
|
|
// (builtins.listToAttrs (
|
|
|
|
|
builtins.concatMap (drive: map (folder: sshfsMounts drive folder) remoteFolders) remoteDrives
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
swapDevices = [
|
|
|
|
|
{ device = "/dev/disk/by-uuid/74007bf1-6e2f-425e-99fa-d35990f4ea37"; }
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
|
"Z ${config.home-manager.users.${user0}.home.homeDirectory} 0755 ${user0} users -"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
services.udisks2.enable = true;
|
|
|
|
|
}
|