diff options
Diffstat (limited to 'modules/home/media')
| -rw-r--r-- | modules/home/media/nixcord/default.nix | 36 | ||||
| -rw-r--r-- | modules/home/media/spicetify/default.nix | 39 |
2 files changed, 75 insertions, 0 deletions
diff --git a/modules/home/media/nixcord/default.nix b/modules/home/media/nixcord/default.nix new file mode 100644 index 0000000..8f3b665 --- /dev/null +++ b/modules/home/media/nixcord/default.nix @@ -0,0 +1,36 @@ +{ + config, + lib, + ... +}: +let + cfg = config.nx.media.nixcord; + inherit (lib) mkEnableOption mkOption types mkIf; +in +{ + options.nx.media.nixcord = { + enable = mkEnableOption "nixcord and setup"; + frameless = mkOption { + description = "Make discord frameless"; + type = types.bool; + default = true; + }; + }; + config = mkIf cfg.enable { + programs.nixcord = { + enable = true; + config = { + themeLinks = [ + "https://refact0r.github.io/system24/theme/system24.theme.css" + ]; + frameless = cfg.frameless; + plugins = { + alwaysAnimate.enable = false; + imageLink.enable = true; + imageZoom.enable = true; + translate.enable = true; + }; + }; + }; + }; +} diff --git a/modules/home/media/spicetify/default.nix b/modules/home/media/spicetify/default.nix new file mode 100644 index 0000000..06c619b --- /dev/null +++ b/modules/home/media/spicetify/default.nix @@ -0,0 +1,39 @@ +{ + config, + lib, + pkgs, + inputs, + ... +}: + +let + spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system}; + cfg = config.nx.media.spicetify; + inherit (lib) mkEnableOption mkIf; +in +{ + options.nx.media.spicetify = { + enable = mkEnableOption "Command-line tool to customize the official Spotify client"; + }; + + config = mkIf cfg.enable { + nixpkgs.config.allowUnfree = true; + programs.spicetify = { + enable = true; + enabledSnippets = with spicePkgs.snippets; [ + pointer + sonicDancing + modernScrollbar + nyanCatProgressBar + declutterNowPlayingBar + ]; + + enabledExtensions = with spicePkgs.extensions; [ + keyboardShortcut + ]; + + theme = spicePkgs.themes.sleek; + colorScheme = "Coral"; + }; + }; +} |
