aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2024-09-23 10:21:52 +0300
committerZhongheng Liu <z.liu@outlook.com.gr>2024-09-23 10:21:52 +0300
commit236c4b8ed2491245ed1af7da2c73fd9e132b99df (patch)
tree10f9260de4a553b3967cca77f12d6fee1f689408
parentdad3573f27a09dad401ff2c59076610d201edf6f (diff)
downloadnixos-configuration-236c4b8ed2491245ed1af7da2c73fd9e132b99df.tar.gz
nixos-configuration-236c4b8ed2491245ed1af7da2c73fd9e132b99df.tar.bz2
nixos-configuration-236c4b8ed2491245ed1af7da2c73fd9e132b99df.zip
feat: spicetify add lyricsPlus to app display
-rw-r--r--home-manager/stvnliu/spicetify.nix4
-rw-r--r--nixos/hardware-configuration.nix1
2 files changed, 4 insertions, 1 deletions
diff --git a/home-manager/stvnliu/spicetify.nix b/home-manager/stvnliu/spicetify.nix
index d8b2d9b..b0947fa 100644
--- a/home-manager/stvnliu/spicetify.nix
+++ b/home-manager/stvnliu/spicetify.nix
@@ -15,7 +15,9 @@ in {
enable = true;
theme = spicePkgs.themes.onepunch;
colorScheme = "Dark";
-
+ enabledCustomApps = with spicePkgs.apps; [
+ lyricsPlus
+ ];
enabledExtensions = with spicePkgs.extensions; [
adblock
fullAppDisplay
diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix
index 29eca17..020471e 100644
--- a/nixos/hardware-configuration.nix
+++ b/nixos/hardware-configuration.nix
@@ -44,5 +44,6 @@
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+ hardware.enableAllFirmware = true;
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}