mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-12 16:06:25 +00:00
22 lines
570 B
Nix
22 lines
570 B
Nix
{ lib, pkgs, ... }:
|
|
with lib.hm.gvariant;
|
|
{
|
|
home.packages = with pkgs; [
|
|
rhythmbox
|
|
];
|
|
|
|
dconf.settings = {
|
|
"org/gnome/rhythmbox/plugins" = {
|
|
active-plugins = [ "rb" "power-manager" "mpris" "iradio" "generic-player" "audiocd" "android" ];
|
|
};
|
|
|
|
"org/gnome/rhythmbox/podcast" = {
|
|
download-interval = "manual";
|
|
};
|
|
|
|
"org/gnome/rhythmbox/sources" = {
|
|
browser-views = "genres-artists-albums";
|
|
visible-columns = [ "post-time" "duration" "track-number" "album" "genre" "beats-per-minute" "play-count" "artist" ];
|
|
};
|
|
};
|
|
}
|