Enable strictDeps on all our toplevel packages #12

Open
abonerib wants to merge 473 commits from abonerib/bscpkgs:enableStrictDeps into master
2 changed files with 15 additions and 0 deletions
Showing only changes of commit a5fae4a289 - Show all commits

14
m/hut/ceph.nix Normal file
View File

@ -0,0 +1,14 @@
{ 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=/";
};
}

View File

@ -8,6 +8,7 @@
./monitoring.nix
./nfs.nix
./slurm-daemon.nix
./ceph.nix
agenix.nixosModules.default
];