1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(mpd): get music from nas. no need for syncthing anymore

This commit is contained in:
2024-04-03 12:09:49 +02:00
parent cdd7d1a0ed
commit ee0feb3a06
4 changed files with 13 additions and 30 deletions

View File

@@ -1,14 +1,12 @@
{ config, ... }:
{
fileSystems."/media/fritz" = {
device = "//192.168.178.1/FRITZ.NAS";
device = "//192.168.178.1/FRITZ.NAS/Backup";
fsType = "cifs";
options = [
"username=ftpuser"
"password=ftppassword"
"guest"
"noauto"
"uid=${toString config.users.users.me.uid}"
"gid=${toString config.users.groups.users.gid}"
"workgroup=WORKGROUP"
"rw"
"noserverino" # ref https://askubuntu.com/a/1265165