mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
31 lines
587 B
Nix
31 lines
587 B
Nix
{ 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 {
|
|
|
|
# } |