Skip to content

Commit e295c38

Browse files
committed
fix template flake
1 parent 3b7f01c commit e295c38

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

templates/default/flake.nix

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
# flake.nix
22
{
3+
description = "The template flake";
4+
35
inputs.treefmt-nix.url = "github:numtide/treefmt-nix";
46

57
outputs =
68
{
79
self,
810
nixpkgs,
9-
systems,
1011
treefmt-nix,
1112
}:
1213
let
1314
supportedSystems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" "aarch64-linux" ];
1415
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
15-
pkgs = import nixpkgs {
16-
inherit system;
17-
overlays = [ self.overlays.default ];
18-
};
16+
pkgs = import nixpkgs { inherit system; };
1917
});
2018
in
2119
{

0 commit comments

Comments
 (0)