19 lines
408 B
Nix
19 lines
408 B
Nix
{
|
|
outputs =
|
|
{ self, nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
lib = import ./default.nix { inherit pkgs; };
|
|
in
|
|
{
|
|
bundlers."x86_64-linux" = rec {
|
|
default = adopt;
|
|
maintainers = lib.allMaintainers;
|
|
adopt = lib.noMaintainers;
|
|
};
|
|
|
|
formatter."x86_64-linux" = pkgs.nixfmt-rfc-style;
|
|
};
|
|
}
|