Initial commit

This commit is contained in:
puck 2026-04-30 12:13:22 +00:00
commit ca0c91c299
15 changed files with 1690 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
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;
};
}