just a bunch of packages, and a sandbox for stuff that we might upstream later.
run nix flake show github:soopyc/mystia
slide github:soopyc/mystia
into your flake inputs like so
{
inputs = {
# ...
mystia.url = "github:soopyc/mystia";
mystia.inputs.nixpkgs.follows = "nixpkgs";
};
}
then add inputs or just mystia to your specialArgs
{
nixosConfigurations = {
system = lib.nixosSystem {
specialArgs = {
inherit mystia;
};
};
};
}
Add/use packages and modules as needed.
{mystia, ...}: {
imports = [
mystia.nixosModules.arrpc
];
}
cross your fingers and hope things work :3