From 53d0ab4cff91ecaca69573da12c4793d561b1c4e Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 20 Oct 2022 12:37:09 +0200 Subject: [PATCH] add bazarr --- nixos/hosts/hades/bazarr/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nixos/hosts/hades/bazarr/configuration.nix 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"; + }; +}