Add support for spotify client.
I like it way better than the browser client.
This commit is contained in:
parent
7ecb5a1237
commit
95a84af1f7
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue