This commit is contained in:
mtgmonkey
2025-11-28 21:36:04 +01:00
commit d419b0f40d
5 changed files with 90 additions and 0 deletions

13
flake.nix Normal file
View File

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