Skip to content

Commit

Permalink
Merge pull request #59 from tweag/nixos-module-upstream
Browse files Browse the repository at this point in the history
chore: make NixOS module compatible with nixpkgs
  • Loading branch information
Erin van der Veen authored May 27, 2024
2 parents aa8f32e + b463948 commit c7859df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nix/genealogos-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ in
{
options = {
services.genealogos = {
enable = mkEnableOption
(mdDoc "Genealogos, a Nix sbom generator");
enable = mkEnableOption "Genealogos, a Nix sbom generator";

package = mkOption {
type = types.package;
default = genealogos-api;
description = mdDoc ''
defaultText = literalExpression "pkgs.genealogos-api";
description = ''
The genealogos-api package to use.
'';
};
Expand All @@ -37,7 +37,7 @@ in
}
'';

description = lib.mdDoc ''
description = ''
Configuration file for Genealogos.
Genealogos-api uses Rocket as its webserver implementation.
Expand Down

0 comments on commit c7859df

Please sign in to comment.