From a1fb60bb1faf5a1c6877e0a65c58e43a8270c3f5 Mon Sep 17 00:00:00 2001 From: osbm Date: Sat, 21 Jun 2025 16:20:02 +0300 Subject: [PATCH] add flake --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..d687dec --- /dev/null +++ b/flake.nix @@ -0,0 +1,8 @@ +{ + description = "A very basic flake"; + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; + outputs = { self, nixpkgs }: { + packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; + packages.x86_64-linux.default = self.packages.x86_64-linux.hello; + }; +}