Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 1.05 KB

README.md

File metadata and controls

61 lines (47 loc) · 1.05 KB

Garnix CI build status


mystia

just a bunch of packages, and a sandbox for stuff that we might upstream later.

what's inside?

run nix flake show github:soopyc/mystia

usage

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