From 9a5766e2772d6badf9e4bf594a4403cfcd953791 Mon Sep 17 00:00:00 2001 From: Nikkuss Date: Tue, 10 Dec 2024 09:50:36 +0400 Subject: [PATCH] init --- flake.nix | 14 ++++++++++++++ lib.nix | 0 2 files changed, 14 insertions(+) create mode 100644 flake.nix create mode 100644 lib.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..6423012 --- /dev/null +++ b/flake.nix @@ -0,0 +1,14 @@ +{ + description = "A very basic flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + }; + + outputs = + { self, nixpkgs }: + { + lib = { system }: import ./lib.nix { inherit nixpkgs system; }; + + }; +} diff --git a/lib.nix b/lib.nix new file mode 100644 index 0000000..e69de29