Files
spacestation/modules/ghostfolio/default.nix

19 lines
350 B
Nix

{
config,
lib,
...
}: let
cfg = config.services.ghostfolio;
in
with lib; {
imports = [];
options.services.ghostfolio = with lib.types; {
enable = mkEnableOption "";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
(callPackage ./derivation {inherit lib pkgs;})
];
};
}