This commit is contained in:
2025-05-18 00:17:23 +03:00
parent 95e94d41f2
commit 1b32112dc9
7 changed files with 47 additions and 42 deletions
+19
View File
@@ -0,0 +1,19 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
xdg = {
enable = true;
autostart.enable = true;
configFile = {
"beets" = {
source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.user-storage}/beets/linux";
target = "beets";
};
};
};
}