9 lines
141 B
Nix
9 lines
141 B
Nix
{ pkgs, ... }: {
|
|
|
|
home.packages = with pkgs; [
|
|
spotify-player
|
|
];
|
|
|
|
xdg.configFile."spotify-player/app.toml".source = ./app.toml;
|
|
|
|
}
|