vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / tasks / bcache.nix
blobd2c816d663f9413acf290baaa3067aa23ce9e8b2
1 { config, lib, pkgs, ... }: let
2   cfg = config.boot.bcache;
3 in {
4   options.boot.bcache.enable = lib.mkEnableOption "bcache mount support" // {
5     default = true;
6     example = false;
7   };
8   options.boot.initrd.services.bcache.enable = lib.mkEnableOption "bcache support in the initrd" // {
9     description = ''
10       *This will only be used when systemd is used in stage 1.*
12       Whether to enable bcache support in the initrd.
13     '';
14     default = config.boot.initrd.systemd.enable && config.boot.bcache.enable;
15     defaultText = lib.literalExpression "config.boot.initrd.systemd.enable && config.boot.bcache.enable";
16   };
18   config = lib.mkIf cfg.enable {
20     environment.systemPackages = [ pkgs.bcache-tools ];
22     services.udev.packages = [ pkgs.bcache-tools ];
24     boot.initrd.extraUdevRulesCommands = lib.mkIf (!config.boot.initrd.systemd.enable) ''
25       cp -v ${pkgs.bcache-tools}/lib/udev/rules.d/*.rules $out/
26     '';
28     boot.initrd.services.udev = lib.mkIf config.boot.initrd.services.bcache.enable {
29       packages = [ pkgs.bcache-tools ];
30       binPackages = [ pkgs.bcache-tools ];
31     };
32   };