This commit is contained in:
alex 2023-06-18 17:17:40 -04:00
commit f02e37c9ad
1 changed files with 9 additions and 0 deletions

9
flake.nix Normal file
View File

@ -0,0 +1,9 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
};
}