2014-07-30 09:49:31 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
inInitrd = any (fs: fs == "cifs") config.boot.initrd.supportedFilesystems;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
|
2016-08-22 16:20:44 +01:00
|
|
|
system.fsPackages = mkIf (any (fs: fs == "cifs") config.boot.supportedFilesystems) [ pkgs.cifs-utils ];
|
2014-07-30 09:49:31 +01:00
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = mkIf inInitrd
|
|
|
|
[ "cifs" "nls_utf8" "hmac" "md4" "ecb" "des_generic" "sha256" ];
|
|
|
|
|
2022-04-16 20:46:32 +01:00
|
|
|
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable)
|
2014-07-30 09:49:31 +01:00
|
|
|
''
|
2016-08-22 16:20:44 +01:00
|
|
|
copy_bin_and_libs ${pkgs.cifs-utils}/sbin/mount.cifs
|
2014-07-30 09:49:31 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|