Add boilerplate

This commit is contained in:
Sven van Heugten 2026-03-05 16:54:34 +01:00
commit 4234866a38
No known key found for this signature in database
GPG key ID: D612F88666F4F660
6 changed files with 354 additions and 0 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.default = pkgs.callPackage ./default.nix { };
}
);
}