mirror of
https://github.com/sstent/nixos-cluster.git
synced 2025-12-06 06:01:54 +00:00
15 lines
219 B
Nix
15 lines
219 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
fileSystems."/mnt/Public" = {
|
|
device = "//192.168.4.109/Public";
|
|
fsType = "cifs";
|
|
# options = ["uid=0,gid=1000"];
|
|
options = ["guest" "uid=1000"];
|
|
};
|
|
}
|