{ lib, inputs, outputs, ... }: { fileSystems."/mnt/Public" = { device = "//192.168.1.109/Public"; fsType = "cifs"; # options = ["uid=0,gid=1000"]; options = ["guest" "uid=1000"]; }; } # { lib, pkgs, config, ... }: # with lib; # let cfg = config.services.ssh-proxy; # in { # options.services.ssh-proxy = { # enable = mkOption { # type = types.bool; # default = false; # description = '' # Enable Mnt Public for WSL # ''; # }; # }; # config = mkIf cfg.enable { # }