modules: move programs/hledger to shared

This commit is contained in:
Charlotte Van Petegem 2024-07-19 15:46:35 +02:00
parent 5db3f7ebad
commit af392da2ee
5 changed files with 22 additions and 12 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, ... }:
let
username = config.chvp.username;
in
{
imports = [
./hledger
];
home-manager.users.${username}.home.packages = with pkgs; [
jq
xsv
yt-dlp
];
}