Add support for spotify client.

I like it way better than the browser client.
This commit is contained in:
Eli Ribble 2024-07-15 10:32:00 -07:00
parent 7ecb5a1237
commit 95a84af1f7
1 changed files with 6 additions and 1 deletions

View File

@ -113,6 +113,10 @@
programs.neovim.enable = true; programs.neovim.enable = true;
programs.neovim.defaultEditor = true; programs.neovim.defaultEditor = true;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"spotify"
];
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -122,8 +126,9 @@
fish fish
gimp-with-plugins gimp-with-plugins
git git
python3
neovim neovim
python3
spotify
thunderbird thunderbird
tmux tmux
]; ];