commit f02e37c9ade4663b17e2fa77e084d29c4e3566c9 Author: alex Date: Sun Jun 18 17:17:40 2023 -0400 flake 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; + }; +}