commit 826132e866dfba45cc60d6e72db3517f1da8d080 Author: kalipso Date: Sun Mar 19 12:13:10 2023 +0100 init diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..a96aa14 --- /dev/null +++ b/flake.nix @@ -0,0 +1,11 @@ +{ + description = "A very basic flake"; + + 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; + + }; +}