grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / tasks / filesystems / cifs.nix
blob5a562b2940f7dc71174d3c43cb32b7499dc349d2
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
7   inInitrd = config.boot.initrd.supportedFilesystems.cifs or false;
9 in
12   config = {
14     system.fsPackages = mkIf (config.boot.supportedFilesystems.cifs or false) [ pkgs.cifs-utils ];
16     boot.initrd.availableKernelModules = mkIf inInitrd
17       [ "cifs" "nls_utf8" "hmac" "md4" "ecb" "des_generic" "sha256" ];
19     boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable)
20       ''
21         copy_bin_and_libs ${pkgs.cifs-utils}/sbin/mount.cifs
22       '';
24     boot.initrd.systemd.extraBin."mount.cifs" = mkIf inInitrd "${pkgs.cifs-utils}/sbin/mount.cifs";
26   };