NixOS/home/programs/spotify.nix

13 lines
155 B
Nix
Raw Normal View History

{
pkgs,
config,
lib,
...
}:
2024-06-12 18:09:56 +07:00
let
cfg = config.profile.spotify;
in
{
config = lib.mkIf cfg.enable { home.packages = with pkgs; [ spotify ]; };
2024-06-12 18:09:56 +07:00
}