From b27bc85d9899b5a62aefd3fe7f823f5a239a0b08 Mon Sep 17 00:00:00 2001 From: EsVagy42 Date: Sun, 1 Feb 2026 13:01:28 +0100 Subject: [PATCH] first 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; + + }; +}