From e4f1e92d2a35781149d041a66ed3920b69478801 Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Tue, 17 Mar 2026 00:05:57 +0100 Subject: [PATCH] nixos/mount-cifs: Automatically add `cifs-utils` whenever this module is included --- modules/factory/mount-cifs.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/factory/mount-cifs.nix b/modules/factory/mount-cifs.nix index 36de748..3016325 100644 --- a/modules/factory/mount-cifs.nix +++ b/modules/factory/mount-cifs.nix @@ -7,7 +7,10 @@ , UID , GID , - }: { + }: { pkgs, ... }: { + environment.systemPackages = with pkgs; [ + cifs-utils + ]; fileSystems."${destination}" = { device = "//${host}/${resource}"; fsType = "cifs";