15 lines
279 B
Nix
15 lines
279 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
bun2nix.url = "github:nix-community/bun2nix";
|
|
bun2nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
bun2nix,
|
|
}: {
|
|
nixosModules.default = ./default.nix;
|
|
};
|
|
}
|