Skip to content

Commit

Permalink
feat: change mount paths for cifs
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Nov 6, 2022
1 parent a658bf2 commit bb140fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions machines/utgard/filesystems.nix
Original file line number Diff line number Diff line change
Expand Up @@ -156,25 +156,25 @@ in
];
};

fileSystems."/var/lib/media/movies" = {
fileSystems."/var/lib/movies" = {
device = "${cifsServer}/movies";
fsType = "cifs";
options = cifsOptions;
};

fileSystems."/var/lib/media/shows" = {
fileSystems."/var/lib/shows" = {
device = "${cifsServer}/shows";
fsType = "cifs";
options = cifsOptions;
};

fileSystems."/var/lib/media/books" = {
fileSystems."/var/lib/books" = {
device = "${cifsServer}/books";
fsType = "cifs";
options = cifsOptions;
};

fileSystems."/var/lib/media/music" = {
fileSystems."/var/lib/music" = {
device = "${cifsServer}/music";
fsType = "cifs";
options = cifsOptions;
Expand Down

0 comments on commit bb140fe

Please sign in to comment.