Compare commits
No commits in common. "812777f5e88a78fc5fdc8908ae5fa6c96dcd626e" and "b97b8ce576f9f57800798b2f7c225be7d7b31101" have entirely different histories.
812777f5e8
...
b97b8ce576
|
@ -45,7 +45,7 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
cudaPackages.cudnn
|
||||
cudaPackages.cudatoolkit
|
||||
#cudaPackages.tensorrt_8_6_0
|
||||
cudaPackages.tensorrt_8_6_0
|
||||
|
||||
];
|
||||
|
||||
|
|
|
@ -15,9 +15,6 @@ imports =
|
|||
git
|
||||
rsync
|
||||
ripgrep
|
||||
htop
|
||||
bottom
|
||||
foot.terminfo
|
||||
tailscale
|
||||
];
|
||||
|
||||
|
|
|
@ -17,9 +17,9 @@ services.samba = {
|
|||
min protocol = SMB3_00
|
||||
server smb encrypt = required
|
||||
# note: localhost is the ipv6 localhost ::1
|
||||
hosts allow = 192.168.1. 192.168.0. 127.0.0.1 localhost 100.0.0.0/255.0.0.0
|
||||
hosts allow = 192.168.1. 127.0.0.1 localhost 100.
|
||||
hosts deny = 0.0.0.0/0
|
||||
guest account = nobody
|
||||
guest account = guest
|
||||
map to guest = bad user
|
||||
'';
|
||||
shares = {
|
||||
|
@ -35,13 +35,14 @@ services.samba = {
|
|||
# };
|
||||
Backup = {
|
||||
path = "/Main/Backup";
|
||||
browseable = "yes";
|
||||
"valid users" = "gunalx";
|
||||
"force user" = "gunalx";
|
||||
"force group" = "gunalx";
|
||||
browseable = "yes";
|
||||
"read only" = "no";
|
||||
"guest ok" = "no";
|
||||
"create mask" = "0644";
|
||||
"directory mask" = "0755";
|
||||
"guest ok" = "yes";
|
||||
"create mask" = "0777";
|
||||
"directory mask" = "0777";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -55,6 +56,9 @@ services.samba-wsdd = {
|
|||
networking.firewall.allowPing = true;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#services.avahi.openfirewall = true;
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in New Issue