added flake.nix

This commit is contained in:
Kristian Krsnik 2023-07-26 00:55:09 +02:00
parent 7e8356a580
commit 9fd24c4650
1 changed files with 11 additions and 0 deletions

11
flake.nix Normal file
View File

@ -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;
};
}