aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/spicetify.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/spicetify.nix')
-rw-r--r--modules/home-manager/spicetify.nix15
1 files changed, 11 insertions, 4 deletions
diff --git a/modules/home-manager/spicetify.nix b/modules/home-manager/spicetify.nix
index 5d245d9..41ccb1e 100644
--- a/modules/home-manager/spicetify.nix
+++ b/modules/home-manager/spicetify.nix
@@ -1,8 +1,15 @@
-{ config, lib, pkgs, inputs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ inputs,
+ ...
+}:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
-in {
+in
+{
options.spicetify.enable = lib.mkEnableOption "Enable Spicetify integration";
config = lib.mkIf config.spicetify.enable {
programs.spicetify = {
@@ -18,9 +25,9 @@ in {
enabledExtensions = with spicePkgs.extensions; [
keyboardShortcut
];
-
+
theme = spicePkgs.themes.sleek;
colorScheme = "Coral";
};
};
-} \ No newline at end of file
+}