This commit is contained in:
mtgmonkey
2025-11-26 01:34:43 +01:00
commit 23498c064a
4 changed files with 167 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
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 {};
};
devShells.${system} = {
default = pkgs.mkShell {
nativeBuildInputs = [
];
shellHook = ''
'';
};
};
};
}