nixos-config/modules/home/beets/default.nix
2025-03-21 15:51:46 -04:00

9 lines
141 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
beets
];
xdg.configFile."beets/config.yaml".source = ./config.yaml;
}