diff --git a/system/common.nix b/system/common.nix index f7c1613..cf7c5ac 100644 --- a/system/common.nix +++ b/system/common.nix @@ -12,6 +12,20 @@ in services.openssh.enable = true; + # Router shared filesystem + fileSystems."/home/andrey/Public" = { + device = "root@192.168.2.1:/mnt/sda1"; + fsType = "sshfs"; + options = [ + "nodev" + "noatime" + "allow_other" + "reconnect" + "IdentityFile=/home/andrey/.ssh/id_ed25519" + ]; + }; + + # l10n and i8n time.timeZone = "Europe/Riga"; i18n.defaultLocale = "en_US.UTF-8";