refactoring

This commit is contained in:
Matt Nish-Lapidus 2025-03-21 15:51:46 -04:00
parent cd146650b7
commit 3110d3fe47
2 changed files with 10 additions and 4 deletions

View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
beets
];
xdg.configFile."beets/config.yaml".source = ./config.yaml;
}