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

  edition = 201909;

  outputs = { self, nixpkgs }: {

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

  };
}