infrastructure/nixos/hosts/hades/bazarr/configuration.nix

11 lines
201 B
Nix
Raw Normal View History

2022-10-20 12:37:09 +02:00
{ config, pkgs, ... }:
{
2022-10-31 10:41:17 +01:00
system.stateVersion = "22.11";
2022-10-20 12:37:09 +02:00
networking.interfaces.eth0.useDHCP = true;
fileSystems."/mnt/storage" = {
device = "storage:/mnt/storage";
fsType = "nfs";
};
}