Add fedi comment thread to the masto article

This commit is contained in:
Cyryl Płotnicki 2023-01-15 10:29:26 +00:00
parent 73201e8164
commit dedaf8d3d7
2 changed files with 6 additions and 4 deletions

View file

@ -30,6 +30,7 @@ Few things that were unexpected/of note
``` ```
- The below can use some refactoring, there is some weird repetition in some places still - The below can use some refactoring, there is some weird repetition in some places still
- You can find the newest version of this and see how it's being used in context on my [code hosting site](https://git.cyplo.dev/cyplo/dotfiles/src/branch/main/nixos/boxes/vpsfree1/mastodon.nix). - You can find the newest version of this and see how it's being used in context on my [code hosting site](https://git.cyplo.dev/cyplo/dotfiles/src/branch/main/nixos/boxes/vpsfree1/mastodon.nix).
- Share your thoughts on the [fedi thread for this article](https://peninsula.industries/@cyplo/109692744740475900) !
```nix ```nix
{ {
config, config,

View file

@ -1,5 +1,5 @@
{ {
description = "legdur: verify integrity of large directories over time"; description = "Adventurous computing, a blog by Cyryl Płotnicki";
inputs = { inputs = {
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
flake-compat = { flake-compat = {
@ -11,15 +11,16 @@
outputs = { self, nixpkgs, utils, flake-compat }: outputs = { self, nixpkgs, utils, flake-compat }:
utils.lib.eachDefaultSystem (system: utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages."${system}"; let pkgs = nixpkgs.legacyPackages."${system}";
in rec { in {
# `nix develop`
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; buildInputs = with pkgs;
with pkgs.python38Packages; [ with pkgs.python38Packages; [
cacert cacert
git git
hugo hugo
hut hut
ruby
bundler
]; ];
}; };
}); });