From 0a88f6a81401de79c6e7297ec4ed2e3fbfa40988 Mon Sep 17 00:00:00 2001 From: Vivian Roest 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 00000000..c3fe8e44 --- /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"; + }; +}