nixos-config/pkgs/default.nix
Frost-Phoenix 3414f3d43f test
2024-01-26 22:13:25 +01:00

14 lines
209 B
Nix

{
systems = ["x86_64-linux"];
perSystem = {
pkgs,
inputs',
...
}: {
packages = {
# instant repl with automatic flake loading
_2048 = pkgs.callPackage ./2048 {};
};
};
}