mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
123
This commit is contained in:
@@ -50,10 +50,6 @@ let
|
|||||||
"${xlib.dirs.server-home}" = {
|
"${xlib.dirs.server-home}" = {
|
||||||
device = "/dev/disk/by-uuid/37e53ebc-5343-a94d-9fe2-0ca39e13a8de";
|
device = "/dev/disk/by-uuid/37e53ebc-5343-a94d-9fe2-0ca39e13a8de";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
# options = [
|
|
||||||
# #"nofail"
|
|
||||||
# #"x-systemd.device-timeout=0"
|
|
||||||
# ];
|
|
||||||
};
|
};
|
||||||
# Archive drive
|
# Archive drive
|
||||||
"/mnt/archive" = {
|
"/mnt/archive" = {
|
||||||
@@ -61,7 +57,16 @@ let
|
|||||||
fsType = "exfat";
|
fsType = "exfat";
|
||||||
options = [
|
options = [
|
||||||
"nofail"
|
"nofail"
|
||||||
#"x-systemd.device-timeout=0"
|
"uid=1000"
|
||||||
|
"gid=1000"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# Mobile SD-Card
|
||||||
|
"/mnt/mobile-sd" = {
|
||||||
|
device = "/dev/disk/by-uuid/7EB1-DC99";
|
||||||
|
fsType = "exfat";
|
||||||
|
options = [
|
||||||
|
"nofail"
|
||||||
"uid=1000"
|
"uid=1000"
|
||||||
"gid=1000"
|
"gid=1000"
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user