This repository is a Nixpkgs overlay that contains all the packages and services for Noelware's products and services. You can run any Noelware service with this overlay.
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
noelware = {
url = "github:Noelware/nixpkgs-noelware";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, noelware, ... }: let
overlays = [(import noelware)];
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit overlays system;
};
in {
# do whatever with `pkgs` or modify
# this to your liking
};
}
The code for the services and packages are released under Unlicense. You can freely copy and use the code if you want, I don't really care.