nixos-config/modules/home/beets/default.nix

10 lines
141 B
Nix
Raw Normal View History

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