12 lines
337 B
Nix

{ config, lib, pkgs, user, ... }:
let cfg = config.modules.base-plus;
in {
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
fava # Web interface for the double-entry bookkeeping software Beancount
beancount # Double-entry bookkeeping software for tracking financial transactions
];
};
}