mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 10:56:05 -07:00
12 lines
333 B
Nix
12 lines
333 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
let cfg = config.modules.extra;
|
|
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
|
|
];
|
|
};
|
|
}
|