From 2cb2d4df61ad59f623c41cd2547a5f81b8d893ad Mon Sep 17 00:00:00 2001 From: Nikkuss Date: Tue, 10 Dec 2024 11:51:09 +0400 Subject: [PATCH] start rework --- flake.nix | 11 ++++------- lib.nix | 4 ++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 6423012..0fe3534 100644 --- a/flake.nix +++ b/flake.nix @@ -1,14 +1,11 @@ { - description = "A very basic flake"; + description = "A wrapper for process compose"; - inputs = { - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - }; + inputs = { }; outputs = - { self, nixpkgs }: + { ... }: { - lib = { system }: import ./lib.nix { inherit nixpkgs system; }; - + mkLib = pkgs: import ./lib.nix { inherit pkgs; }; }; } diff --git a/lib.nix b/lib.nix index e69de29..0f0f6ed 100644 --- a/lib.nix +++ b/lib.nix @@ -0,0 +1,4 @@ +{ pkgs }: +{ + mkWrapper = { }: { }; +}