Archived
1
0
This repository has been archived on 2026-05-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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;})
];
};
}