nixos/mount-cifs: Automatically add cifs-utils whenever this module is included

This commit is contained in:
2026-03-17 00:05:57 +01:00
parent a4f56f922f
commit e4f1e92d2a

View File

@@ -7,7 +7,10 @@
, UID
, GID
,
}: {
}: { pkgs, ... }: {
environment.systemPackages = with pkgs; [
cifs-utils
];
fileSystems."${destination}" = {
device = "//${host}/${resource}";
fsType = "cifs";