commit 9a5766e2772d6badf9e4bf594a4403cfcd953791 Author: Nikkuss Date: Tue Dec 10 09:50:36 2024 +0400 init 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