Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit daab2e5

Browse files
feat: nix flake init -t github:NixOS/templates#trivial
1 parent 6b9dc85 commit daab2e5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

flake.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
description = "A very basic flake";
3+
4+
outputs = { self, nixpkgs }: {
5+
6+
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
7+
8+
defaultPackage.x86_64-linux = self.packages.x86_64-linux.hello;
9+
10+
};
11+
}

0 commit comments

Comments
 (0)