fix spotifyd volume & remove unecessary catppuccin cursors

This commit is contained in:
Sean Kovacs 2026-01-15 11:32:24 -05:00
commit b3b2cddabe
Signed by: sckova
GPG key ID: 00F325187C68651A

View file

@ -1,8 +1,8 @@
{ {
config, config,
pkgs, pkgs,
pkgs-unstable,
lib, lib,
types,
... ...
}: { }: {
options = { options = {
@ -186,27 +186,18 @@
# enableWideVine = true; # enableWideVine = true;
# }) # })
(catppuccin-kde.override { (catppuccin-kde.override {
flavour = [ flavour = [config.catppuccin.flavor];
"latte" accents = [config.catppuccin.accent];
config.catppuccin.flavor
];
accents = [
config.catppuccin.accent
];
}) })
]) ])
++ [ ++ [
pkgs.catppuccin-cursors.latteDark
pkgs.catppuccin-cursors.latteLight
pkgs.catppuccin-cursors."latte${config.catppuccinUpper.accent}"
pkgs.catppuccin-cursors."${config.catppuccin.flavor}Dark"
pkgs.catppuccin-cursors."${config.catppuccin.flavor}Light"
pkgs.catppuccin-cursors."${config.catppuccin.flavor}${config.catppuccinUpper.accent}" pkgs.catppuccin-cursors."${config.catppuccin.flavor}${config.catppuccinUpper.accent}"
]; ];
services = { services = {
spotifyd = { spotifyd = {
enable = true; enable = true;
package = pkgs-unstable.spotifyd;
settings = { settings = {
global = { global = {
device_type = "computer"; device_type = "computer";
@ -216,7 +207,7 @@
bitrate = 320; bitrate = 320;
initial_volume = 100; initial_volume = 100;
volume_normalisation = true; volume_normalisation = true;
normalisation_pregain = -10; normalisation_pregain = 0;
}; };
}; };
}; };