pfpl/flake.nix
2024-05-01 01:05:04 -05:00

6 lines
226 B
Nix

{
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in { devShell = pkgs.mkShell { packages = with pkgs; [ teyjus ]; }; });
}