mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
20 lines
314 B
Nix
20 lines
314 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|