aboutsummaryrefslogtreecommitdiff
path: root/src/nix/flake-template.nix
blob: 60d7171f31b02dbb130e85fe53033d27a5e02118 (plain)
1
2
3
4
5
6
7
8
9
{
  description = "A flake for building Hello World";

  outputs = { self, nixpkgs }: {

    packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;

  };
}