From 1eaa2acfbb546f5de5386e56cbeadfcbbfbc0e25 Mon Sep 17 00:00:00 2001 From: li Date: Thu, 12 Dec 2024 14:22:25 +0100 Subject: [PATCH] feat: minimal working flake --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..cfb6cfb --- /dev/null +++ b/flake.nix @@ -0,0 +1,7 @@ +{ + description = "Composable Nix Modules"; + outputs = _: { + importAtom = import ./src/core/importAtom.nix; + core = import ./src/core/mod.nix; + }; +}