13 lines
240 B
Nix
13 lines
240 B
Nix
{
|
|
systems = ["x86_64-linux"];
|
|
|
|
perSystem = {pkgs, ...}: {
|
|
packages = {
|
|
# instant repl with automatic flake loading
|
|
repl = pkgs.callPackage ./repl {};
|
|
|
|
apple-fonts = pkgs.callPackage ./Apple-Fonts {};
|
|
};
|
|
};
|
|
}
|