From f02e37c9ade4663b17e2fa77e084d29c4e3566c9 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 18 Jun 2023 17:17:40 -0400 Subject: [PATCH] flake --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..7ed576a --- /dev/null +++ b/flake.nix @@ -0,0 +1,9 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; + }; + + outputs = { self, nixpkgs }: { + packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; + }; +}