mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
23 lines
641 B
Nix
23 lines
641 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
options = { zfs.enable = lib.mkEnableOption "ZFS file system."; };
|
|
|
|
config =
|
|
lib.mkIf (pkgs.stdenv.isLinux && config.server && config.zfs.enable) {
|
|
|
|
# Only use compatible Linux kernel, since ZFS can be behind
|
|
boot.kernelPackages =
|
|
config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
boot.kernelParams = [ "nohibernate" ];
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
services.prometheus.exporters.zfs.enable = true;
|
|
scrapeTargets = [
|
|
"127.0.0.1:${
|
|
builtins.toString config.services.prometheus.exporters.zfs.port
|
|
}"
|
|
];
|
|
|
|
};
|
|
|
|
}
|