From 95a84af1f7f2d31c3961f35b447ffacc27a606c6 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 15 Jul 2024 10:32:00 -0700 Subject: [PATCH] Add support for spotify client. I like it way better than the browser client. --- nalai/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nalai/configuration.nix b/nalai/configuration.nix index 530fae7..518367f 100644 --- a/nalai/configuration.nix +++ b/nalai/configuration.nix @@ -113,6 +113,10 @@ programs.neovim.enable = true; programs.neovim.defaultEditor = true; + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ + "spotify" + ]; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ @@ -122,8 +126,9 @@ fish gimp-with-plugins git - python3 neovim + python3 + spotify thunderbird tmux ];