Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.nbd;
in
{
options = {
programs.nbd = {
enable = mkEnableOption (lib.mdDoc "Network Block Device (nbd) support");
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ nbd ];
boot.kernelModules = [ "nbd" ];
}