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