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