nixos-config/modules/shared/programs/default.nix
Charlotte Van Petegem bb8fbda1c3
All checks were successful
Cachix / build (elendel) (push) Successful in 1m56s
Cachix / build (kholinar) (push) Successful in 2m32s
Cachix / build (marabethia) (push) Successful in 1m50s
programs: Remove xsv
2025-01-30 09:44:44 +01:00

12 lines
179 B
Nix

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