emerg: clear commits due to fwd server leak

This commit is contained in:
Xory 2025-10-22 20:40:10 +03:00
commit 66fa3474b2
12 changed files with 1081 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "my project description";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}