nixos-config/modules/home/beets.nix
2025-03-21 15:53:47 -04:00

9 lines
147 B
Nix

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