initial commit

This commit is contained in:
Aaron Manning
2026-09-15 17:32:04 +10:00
commit d3f3403523
25 changed files with 5192 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
description = "A web server which provides a neat interface to YouTube.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
in {
packages.${system}.default = nixpkgs.legacyPackages.${system}.callPackage ./. { };
};
}