pfpl/flake.nix

7 lines
226 B
Nix
Raw Normal View History

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