feat: set up 'music' module

This commit is contained in:
2026-02-06 11:11:19 +01:00
parent dc630fe984
commit dcb525cce2
6 changed files with 20 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ flip_status_indicators = true
"-" = "voldown 1"
"/" = "focus search"
"Q" = "focus queue"
"L" = "focus library"
# "L" = "focus library"
"1" = "focus queue"
"2" = "focus library"
"h" = "move left 1"

View File

@@ -1,3 +0,0 @@
username = 'hektor.misplon@gmail.com'
auth_type = 0
auth_data = 'KDEzMzc9PXRydTMpPzo='

View File

@@ -19,6 +19,7 @@ in
../../modules/git
../../modules/k8s/k9s.nix
../../modules/kitty.nix
../../modules/music
../../modules/nvim.nix
../../modules/ssh.nix
../../modules/taskwarrior.nix

View File

@@ -18,6 +18,7 @@ in
../../modules/git
../../modules/k8s/k9s.nix
../../modules/kitty.nix
../../modules/music
../../modules/nfc
../../modules/nvim.nix
../../modules/ssh.nix

View File

@@ -25,6 +25,7 @@ in
../../modules/nvim.nix
../../modules/browser
../../modules/shell
../../modules/music
../../modules/taskwarrior.nix
];

View File

@@ -0,0 +1,16 @@
{
dotsPath,
pkgs,
...
}:
{
home.packages = with pkgs; [
ncspot
# (if config.lib ? nixGL then config.lib.nixGL.wrap spotify else spotify)
];
home.file = {
".config/ncspot/config.toml".source = dotsPath + "/.config/ncspot/config.toml";
};
}