nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

spotify.nix (127B)


      1 { config, pkgs, ... }:
      2 
      3 {
      4   programs.spotify-player = {
      5     enable = true;
      6   };
      7 
      8   home.packages = with pkgs; [ playerctl ];
      9 }