Add fedi comment thread to the masto article
This commit is contained in:
parent
73201e8164
commit
dedaf8d3d7
2 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
- 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
|
||||
{
|
||||
config,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
description = "legdur: verify integrity of large directories over time";
|
||||
description = "Adventurous computing, a blog by Cyryl Płotnicki";
|
||||
inputs = {
|
||||
utils.url = "github:numtide/flake-utils";
|
||||
flake-compat = {
|
||||
|
@ -11,15 +11,16 @@
|
|||
outputs = { self, nixpkgs, utils, flake-compat }:
|
||||
utils.lib.eachDefaultSystem (system:
|
||||
let pkgs = nixpkgs.legacyPackages."${system}";
|
||||
in rec {
|
||||
# `nix develop`
|
||||
in {
|
||||
devShell = pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs;
|
||||
buildInputs = with pkgs;
|
||||
with pkgs.python38Packages; [
|
||||
cacert
|
||||
git
|
||||
hugo
|
||||
hut
|
||||
ruby
|
||||
bundler
|
||||
];
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue