From 67ed71ac779a998c68e44cc3a2c719be28d9c957 Mon Sep 17 00:00:00 2001 From: transcaffeine Date: Sat, 6 Sep 2025 17:18:11 +0200 Subject: [PATCH] chore: set up nexus for testing --- hosts/nixos-unstable/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/nixos-unstable/default.nix b/hosts/nixos-unstable/default.nix index 487cd99..eea7d34 100644 --- a/hosts/nixos-unstable/default.nix +++ b/hosts/nixos-unstable/default.nix @@ -4,4 +4,11 @@ ./configuration.nix ../../profiles/base ]; + nixpkgs.config.permittedInsecurePackages = [ + "nexus-3.70.1-02" + ]; + services.nexus = { + enable = true; + package = pkgs.nexus3; + }; }