jungle/m/hut/ceph.nix

15 lines
330 B
Nix
Raw Normal View History

2023-08-22 15:57:49 +02:00
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.ceph-client ];
# We need the ceph module loaded as the mount.ceph binary fails to run the
# modprobe command.
boot.kernelModules = [ "ceph" ];
fileSystems."/ceph" = {
fsType = "ceph";
device = "animal@9c8d06e0-485f-4aaf-b16b-06d6daf1232b.cephfs=/";
};
}