15 lines
272 B
Nix
15 lines
272 B
Nix
{ inputs, pkgs, ...}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
../../profiles/base
|
|
];
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"nexus-3.70.1-02"
|
|
];
|
|
services.nexus = {
|
|
enable = true;
|
|
package = pkgs.nexus3;
|
|
};
|
|
}
|