chore: init

This commit is contained in:
dusk 2023-04-12 07:16:36 +03:00
commit a0d87a05f8
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA

19
flake.nix Normal file
View File

@ -0,0 +1,19 @@
{
inputs.parts.url = "github:hercules-ci/flake-parts";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.systems.url = "github:nix-systems/x86_64-linux";
inputs.naked-shell.url = "github:yusdacra/mk-naked-shell";
outputs = inp:
inp.parts.lib.mkFlake {inputs = inp;} {
systems = import inp.systems;
perSystem = {pkgs, ...}: let
mkNakedShell = pkgs.callPackage inp.naked-shell {};
in {
devShell = mkNakedShell {
name = "musikspider-devshell";
packages = with pkgs; [deno];
};
};
};
}