This commit is contained in:
mtgmonkey 2025-06-27 04:10:26 -04:00
commit a183d55b69
5 changed files with 244 additions and 0 deletions

11
flake.nix Normal file
View file

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