feat: switch to tidal-hifi

This commit is contained in:
Youwen Wu 2025-06-22 16:50:15 -07:00
parent 2f9110c98d
commit d6e9d225a9
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
4 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,6 @@
{ {
config, config,
osConfig,
pkgs, pkgs,
lib, lib,
... ...
@ -106,6 +107,7 @@ in
sbctl sbctl
] ]
++ lib.optionals pkgs.stdenv.targetPlatform.isAarch64 [ ] ++ lib.optionals pkgs.stdenv.targetPlatform.isAarch64 [ ]
++ lib.optionals osConfig.liminalOS.config.allowUnfree [ tidal-hifi ]
) )
); );
}; };

View file

@ -8,7 +8,7 @@
{ {
config = lib.mkIf (config.liminalOS.programs.enable && osConfig.liminalOS.config.allowUnfree) { config = lib.mkIf (config.liminalOS.programs.enable && osConfig.liminalOS.config.allowUnfree) {
programs.spicetify = { programs.spicetify = {
enable = true; enable = false;
# theme = spicepkgs.themes.dribbblish; # theme = spicepkgs.themes.dribbblish;
# colorScheme = "rosepine"; # colorScheme = "rosepine";
enabledExtensions = with spicepkgs.extensions; [ enabledExtensions = with spicepkgs.extensions; [

View file

@ -614,5 +614,6 @@
"spellCheckLanguages": [ "spellCheckLanguages": [
"en-US", "en-US",
"en" "en"
] ],
"arRPC": true
} }

View file

@ -113,6 +113,8 @@ in
config.liminalOS.config.extraUnfreePackages config.liminalOS.config.extraUnfreePackages
++ [ ++ [
"spotify" "spotify"
"tidal-hifi"
"castlabs-electron"
] ]
) )
); );