nixos-config/modules/shared/programs/default.nix
Charlotte Van Petegem 5a576bc6ad
All checks were successful
Cachix / build (elendel) (push) Successful in 1m45s
Cachix / build (kholinar) (push) Successful in 2m20s
Cachix / build (marabethia) (push) Successful in 1m47s
Add xan on all hosts
2025-04-08 20:10:38 +02:00

12 lines
183 B
Nix

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