This commit is contained in:
mtgmonkey
2025-12-04 16:31:03 +01:00
commit a72d3b0219
4 changed files with 110 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system} = {
default = pkgs.callPackage ./package.nix {};
};
};
}