From 56f5a9f6977caf9e4afb5e7eb561cf99c09ee442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Barnouin?= Date: Wed, 14 May 2025 18:28:09 +0200 Subject: [PATCH] Fix typos --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/flake.nix b/flake.nix index d911b62..1e86c26 100644 --- a/flake.nix +++ b/flake.nix @@ -153,6 +153,23 @@ } ]; }; + arr-box = nixpkgs.lib.nixosSystem { + inherit system; + specialArgs = { inherit inputs; }; + modules = [ + agenix.nixosModules.default + crowdsec.nixosModules.crowdsec-firewall-bouncer + "${inputs.nixpkgs}/nixos/modules/virtualisation/proxmox-image.nix" + "${inputs.self}/systems/minimalVMConfig.nix" + "${inputs.self}/services" + "${inputs.self}/modules" + { + services.vm_nixarr = { + enable = true; + }; + } + ]; + }; redis = nixpkgs.lib.nixosSystem { inherit system; specialArgs = { inherit inputs; };