This commit is contained in:
2023-05-09 16:48:31 +02:00
commit 44e1333b3a
5 changed files with 345 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;
};
}