From c51f2f436c8573295f3c6cc58c9c6eb970231008 Mon Sep 17 00:00:00 2001 From: Kristian Krsnik Date: Sat, 6 Apr 2024 19:22:33 +0200 Subject: [PATCH] initial commit --- flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..c7a9a1c --- /dev/null +++ b/flake.nix @@ -0,0 +1,15 @@ +{ + description = "A very basic flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-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; + + }; +}