aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}