ark/users/modules/spotify/default.nix

17 lines
294 B
Nix
Raw Normal View History

2022-11-18 00:06:43 +03:00
{
config,
pkgs,
...
}: {
services.spotifyd = {
enable = true;
settings = {
device_name = "nix";
};
};
home.packages = [pkgs.spotify-tui];
home.persistence."${config.system.persistDir}${config.home.homeDirectory}".directories = [
".config/spotify-tui"
];
}