1
0
Fork 0

Install Spotube

This commit is contained in:
Ethan Reece 2025-03-06 16:38:08 -06:00
parent bf7dc5b2d0
commit 6b4528e310
Signed by: me
GPG key ID: 198E9EB433DB1B28
2 changed files with 11 additions and 2 deletions

0
.meta.platforms Normal file
View file

View file

@ -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" ];
};
};
}