start rework

This commit is contained in:
2024-12-10 11:51:09 +04:00
parent 9a5766e277
commit 2cb2d4df61
2 changed files with 8 additions and 7 deletions

View File

@@ -1,14 +1,11 @@
{ {
description = "A very basic flake"; description = "A wrapper for process compose";
inputs = { inputs = { };
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = outputs =
{ self, nixpkgs }: { ... }:
{ {
lib = { system }: import ./lib.nix { inherit nixpkgs system; }; mkLib = pkgs: import ./lib.nix { inherit pkgs; };
}; };
} }

View File

@@ -0,0 +1,4 @@
{ pkgs }:
{
mkWrapper = { }: { };
}