mirror of
https://github.com/sstent/nixos-cluster.git
synced 2026-01-26 23:21:59 +00:00
10 lines
231 B
Nix
10 lines
231 B
Nix
{ lib, pkgs, config, inputs, ... }: {
|
|
|
|
fileSystems."/mnt/Public" = {
|
|
device = "//192.168.1.109/Public";
|
|
fsType = "cifs";
|
|
# options = ["uid=0,gid=1000"];
|
|
options = ["guest" "uid=1000"];
|
|
};
|
|
|
|
} |