nixos-config/modules/home/beets.nix

10 lines
147 B
Nix
Raw Normal View History

2025-03-21 15:51:46 -04:00
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
beets
];
2025-03-21 15:53:47 -04:00
xdg.configFile."beets/config.yaml".source = ./beets/config.yaml;
2025-03-21 15:51:46 -04:00
}