Files
nix-config/home/programs/beets/default.nix

11 lines
143 B
Nix

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