From 6b4528e3105f2ef996b6ccc33dc61f9afa1fe682 Mon Sep 17 00:00:00 2001 From: Ethan Reece Date: Thu, 6 Mar 2025 16:38:08 -0600 Subject: [PATCH] Install Spotube --- .meta.platforms | 0 home.nix | 13 +++++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .meta.platforms diff --git a/.meta.platforms b/.meta.platforms new file mode 100644 index 0000000..e69de29 diff --git a/home.nix b/home.nix index 41eb2d1..5c5977b 100644 --- a/home.nix +++ b/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, inputs, ... }: let ghidra_pkg = pkgs.ghidra.withExtensions ( @@ -9,7 +9,7 @@ let ); ghidra_dir = ".config/ghidra/${pkgs.ghidra.distroPrefix}"; in -{ +{ # Home Manager needs a bit of information about you and the paths it should # manage. home.username = "sudoer777"; @@ -54,6 +54,7 @@ in pkgs.signal-desktop pkgs.bitwarden-desktop pkgs.element-desktop + pkgs.spotube # pkgs.logseq - not available on aarch64 # pkgs.tidal-hifi - aarch64 build broken ]; @@ -128,5 +129,13 @@ in comment = "Ghidra Software Reverse Engineering Suite"; categories = [ "Development" ]; }; + spotube = { + name = "Spotube"; + exec = "nixGLMesa spotube"; + icon = "spotube"; + type = "Application"; + comment = "Music Streaming Application"; + categories = [ "Music" ]; + }; }; }