nixpkgs/nixos/modules/programs/nbd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
316 B
Nix
Raw Normal View History

{ 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" ];
};
}