unoffical wafrn mirror
wafrn.net
atproto
social-network
activitypub
1{
2 description = "Wafrn Flake; Provides a devshell";
3
4 inputs = {
5 flake-utils.url = "github:numtide/flake-utils";
6 nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.11";
7 };
8
9 outputs = { self, nixpkgs, flake-utils }:
10 flake-utils.lib.simpleFlake {
11 inherit self nixpkgs;
12 name = "wafrn-flake";
13 shell = ./shell.nix;
14 };
15}