configured spotifyd and spt

This commit is contained in:
Rouven Seifert 2023-02-26 22:50:07 +01:00
parent 0e085baeb1
commit 2cb528c2b7
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
7 changed files with 39 additions and 22 deletions

View file

@ -11,6 +11,7 @@
./neovim
./qutebrowser
./sops
./spotify
./ssh
./tmux
./vifm

View file

@ -86,7 +86,6 @@
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, bufopts)
vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts)
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, bufopts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, bufopts)
vim.keymap.set('n', '<leader>D', vim.lsp.buf.type_definition, bufopts)
vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename, bufopts)
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action, bufopts)

View file

@ -46,7 +46,6 @@
# misc
neofetch # obligatory
#spotify # make probles atm
virt-manager
ventoy-bin

View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
home.packages = [ pkgs.spotify-tui ];
sops.secrets."spotify" = { };
services.spotifyd = {
enable = true;
settings = {
global = {
username = config.accounts.email.accounts."gmail".address;
password_cmd = "${pkgs.coreutils}/bin/cat $XDG_RUNTIME_DIR/secrets/spotify";
};
};
};
}

View file

@ -5,6 +5,9 @@
shellAliases = {
rm = "trash";
ls = "exa --icons";
l = "ls -l";
ll = "ls -la";
la = "ls -a";
};
history = {
size = 10000;