1
0
mirror of https://github.com/mgerb/top-of-reddit synced 2026-01-11 11:02:51 +00:00

Adding posts for 06-17-2025

This commit is contained in:
top-of-reddit
2025-06-18 00:00:27 -05:00
parent 0565d26b5f
commit 460d6ce6f8
8 changed files with 3456 additions and 599 deletions

31
flake.nix Normal file
View File

@@ -0,0 +1,31 @@
{
description = "playground";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
go
python313Full
python313Packages.wordcloud
];
shellHook = ''
'';
};
});
}