summary refs log tree commit diff stats
path: root/modules/programs/accounting.nix
blob: bcd33b8f254660ef1378dfa83e16b6632850bfc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

let
  pkgsUnstable = import <nixos-unstable> {};
  # pkgsUnstable = pkgs;
in
{ environment.systemPackages = with pkgs; [
    aqbanking
    ledger
    pkgsUnstable.bean-add
    pkgsUnstable.beancount
    pkgsUnstable.fava
  ];
}