17 lines
241 B
Nix
17 lines
241 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let
|
|
cfg = config.programs.desktop.media.music.tui;
|
|
in
|
|
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
termusic
|
|
spotify-player
|
|
ytui-music
|
|
alsa-utils
|
|
];
|
|
};
|
|
|
|
}
|