about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/tasks/filesystems/apfs.nix
blob: 2f2be351df61be9a0f4561345a0e84dd4af56f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, lib, pkgs, ... }:

with lib;

let

  inInitrd = any (fs: fs == "apfs") config.boot.initrd.supportedFilesystems;

in

{
  config = mkIf (any (fs: fs == "apfs") config.boot.supportedFilesystems) {

    system.fsPackages = [ pkgs.apfsprogs ];

    boot.extraModulePackages = [ config.boot.kernelPackages.apfs ];

    boot.initrd.kernelModules = mkIf inInitrd [ "apfs" ];

    # Don't copy apfsck into the initramfs since it does not support repairing the filesystem
  };
}