fixup the first template

This commit is contained in:
Dmitriy Pleshevskiy 2022-08-31 23:24:24 +03:00
parent 6d09d02062
commit 03ede4536c
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
2 changed files with 8 additions and 5 deletions

View File

@ -5,12 +5,13 @@
};
outputs = { self, nixpkgs, utils }:
utils.eachDefaultSystem (system:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = { };
devShells.default = pkgs.mkShell {
packages = [ ];
};
});
}

View File

@ -3,8 +3,10 @@
outputs = { self }: {
templates = {
path = ./base-flake;
description = "An empty flake for each default system";
base-flake = {
path = ./base-flake;
description = "An empty flake for each default system";
};
};
defaultTemplate = self.templates.base-flake;
};