Hybrid cloud cluster monorepo with Ansible, K8s, NixOS, and Terraform. cute.haus
ansible terraform nix k8s
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(b2-mounts): use systemd.mounts instead of fileSystems.unitConfig

CI revealed that fileSystems."<path>".unitConfig doesn't exist in
the deployed NixOS version. The proper NixOS option is
systemd.mounts."<path>".unitConfig, which merges with the mounts
auto-generated from fileSystems entries.

Aly Raffauf (Jul 9, 2026, 9:34 PM EDT) b54b2bd2 2c16a928

+10 -3
+10 -3
nix/nixos/profiles/b2-mounts.nix
··· 42 42 device = "b2:${remote}"; 43 43 fsType = "rclone"; 44 44 options = b2Options ++ b2ProfileOptions.${profile}; 45 - unitConfig = { 46 - StartLimitIntervalSec = "0"; 47 - }; 48 45 }; 49 46 }; 50 47 ··· 101 98 }) 102 99 cfg.shares)) 103 100 allShares)); 101 + 102 + systemd.mounts = 103 + builtins.foldl' (a: b: a // b) {} 104 + (map (share: { 105 + "/mnt/Backblaze/${share}" = { 106 + unitConfig = { 107 + StartLimitIntervalSec = "0"; 108 + }; 109 + }; 110 + }) cfg.shares); 104 111 105 112 systemd.services.b2-mount-health = let 106 113 healthScript = pkgs.writeShellScript "b2-mount-health" ''