infrastructure/nixos/hosts/hades/bazarr/configuration.nix
2022-10-22 13:15:18 +02:00

10 lines
201 B
Nix

{ config, pkgs, ... }:
{
system.stateVersion = "21.05";
networking.interfaces.eth0.useDHCP = true;
fileSystems."/mnt/storage" = {
device = "storage:/mnt/storage";
fsType = "nfs";
};
}