fix module and descr for keyPath

This commit is contained in:
Aaron Bieber 2022-12-05 20:09:32 -07:00
parent 507202b0a8
commit 4cb49f9d83
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; }); nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in { in {
overlay = final: prev: { overlay = final: prev: {
startpage = self.packages.${prev.system}.startpage; gostart = self.packages.${prev.system}.gostart;
}; };
nixosModule = import ./module.nix; nixosModule = import ./module.nix;
packages = forAllSystems (system: packages = forAllSystems (system:

View File

@ -33,7 +33,7 @@ in {
type = types.path; type = types.path;
default = ""; default = "";
description = '' description = ''
Path to the TS API key file Path to the GitHub API key file
''; '';
}; };