mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 04:21:53 -05:00
hosts/common/samba: reuse options
This commit is contained in:
parent
a844e2ff68
commit
444fefdd8e
|
@ -3,41 +3,32 @@
|
|||
lib,
|
||||
...
|
||||
}: {
|
||||
fileSystems = lib.attrsets.optionalAttrs (config.networking.hostName != "mauville") {
|
||||
"/mnt/Archive" = {
|
||||
device = "//mauville/Archive";
|
||||
fsType = "cifs";
|
||||
options = [
|
||||
"gid=100"
|
||||
"guest"
|
||||
"nofail"
|
||||
"uid=${toString config.users.users.aly.uid}"
|
||||
"x-systemd.after=network.target"
|
||||
"x-systemd.after=tailscaled.service"
|
||||
"x-systemd.automount"
|
||||
"x-systemd.device-timeout=5s"
|
||||
"x-systemd.idle-timeout=60"
|
||||
"x-systemd.mount-timeout=5s"
|
||||
];
|
||||
};
|
||||
fileSystems = let
|
||||
fsType = "cifs";
|
||||
options = [
|
||||
"gid=100"
|
||||
"guest"
|
||||
"nofail"
|
||||
"uid=${toString config.users.users.aly.uid}"
|
||||
"x-systemd.after=network.target"
|
||||
"x-systemd.after=tailscaled.service"
|
||||
"x-systemd.automount"
|
||||
"x-systemd.device-timeout=5s"
|
||||
"x-systemd.idle-timeout=60"
|
||||
"x-systemd.mount-timeout=5s"
|
||||
];
|
||||
in
|
||||
lib.attrsets.optionalAttrs (config.networking.hostName != "mauville") {
|
||||
"/mnt/Archive" = {
|
||||
inherit options fsType;
|
||||
device = "//mauville/Archive";
|
||||
};
|
||||
|
||||
"/mnt/Media" = {
|
||||
device = "//mauville/Media";
|
||||
fsType = "cifs";
|
||||
options = [
|
||||
"gid=100"
|
||||
"guest"
|
||||
"nofail"
|
||||
"uid=${toString config.users.users.aly.uid}"
|
||||
"x-systemd.after=network.target"
|
||||
"x-systemd.after=tailscaled.service"
|
||||
"x-systemd.automount"
|
||||
"x-systemd.device-timeout=5s"
|
||||
"x-systemd.idle-timeout=60"
|
||||
"x-systemd.mount-timeout=5s"
|
||||
];
|
||||
"/mnt/Media" = {
|
||||
inherit options fsType;
|
||||
device = "//mauville/Media";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.sharedModules = [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue