nixos/modules/logs-share/default.nix

12 lines
289 B
Nix
Raw Normal View History

2022-07-14 13:06:28 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
unstable.lnav
2022-07-14 13:06:28 +02:00
];
fileSystems."/mnt/server_logs" = {
device = "10.7.89.108:logs";
fsType = "nfs";
2022-11-04 14:31:51 +01:00
options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=300" "noatime" "nfsvers=4.0" "ro" ];
2022-07-14 13:06:28 +02:00
};
}