mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
rustboro: add samba share automounts
This commit is contained in:
parent
9457d47b86
commit
9f10655a6c
|
@ -21,6 +21,42 @@
|
||||||
|
|
||||||
networking.hostName = "rustboro"; # Define your hostname.
|
networking.hostName = "rustboro"; # Define your hostname.
|
||||||
|
|
||||||
|
fileSystems = {
|
||||||
|
"/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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
"/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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
alyraffauf = {
|
alyraffauf = {
|
||||||
base = {
|
base = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
linger = true;
|
linger = true;
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
|
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGcJBb7+ZxkDdk06A0csNsbgT9kARUN185M8k3Lq7E/d u0_a336@localhost" # termux on winona
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGcJBb7+ZxkDdk06A0csNsbgT9kARUN185M8k3Lq7E/d u0_a336@localhost" # termux on winona
|
||||||
(builtins.readFile ../../../secrets/publicKeys/aly_lavaridge.pub)
|
(builtins.readFile ../../../secrets/publicKeys/aly_lavaridge.pub)
|
||||||
|
|
Loading…
Reference in a new issue