diff --git a/nixos/hosts/hades/bazarr/configuration.nix b/nixos/hosts/hades/bazarr/configuration.nix new file mode 100644 index 0000000..c3fe8e4 --- /dev/null +++ b/nixos/hosts/hades/bazarr/configuration.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: +{ + system.stateVersion = "21.05"; + networking.interfaces.eth0.useDHCP = true; + + fileSystems."/mnt/storage" = { + device = "storage:/mnt/storage"; + fsType = "nfs"; + }; +}