fixup the first template
This commit is contained in:
parent
6d09d02062
commit
03ede4536c
2 changed files with 8 additions and 5 deletions
|
@ -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 = [ ];
|
||||
};
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue