Initial commit

This commit is contained in:
arne 2023-01-03 20:59:23 +01:00
commit 451ece3490
7 changed files with 161 additions and 0 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "kidpixbot";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
lib = pkgs.lib;
in {
devShell.${system} = pkgs.mkShell rec {
buildInputs = with pkgs; [
deno
];
};
};
}