refraction/flake.nix
Sefa Eyeoglu ad63fedb45
chore: add Flake and direnv
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-02-17 00:30:18 +01:00

15 lines
431 B
Nix

{
description = "Discord bot for Prism Launcher";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell { packages = with pkgs; [ yarn ]; };
});
}