20 lines
460 B
Nix
20 lines
460 B
Nix
{
|
|
description = "NixOS module for running Wafrn";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
|
bun2nix.url = "github:nix-community/bun2nix";
|
|
bun2nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = { self, bun2nix, ... }: {
|
|
nixosModules = {
|
|
wafrn = { ... }: {
|
|
imports = [ ./modules/wafrn.nix ];
|
|
_module.args.bun2nixFlake = bun2nix;
|
|
};
|
|
default = self.nixosModules.wafrn;
|
|
};
|
|
};
|
|
}
|