NixOS/home/programs/spotify.nix

12 lines
163 B
Nix
Raw Permalink Normal View History

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