diff --git a/nixos/ryu/apps/default.nix b/nixos/ryu/apps/default.nix index f77c4d7..d4632b9 100644 --- a/nixos/ryu/apps/default.nix +++ b/nixos/ryu/apps/default.nix @@ -17,6 +17,7 @@ ./bs-manager.nix ./sgdboop.nix ./slo.nix + ./tidal-hifi.nix ./umu.nix ./audio.nix ]; diff --git a/nixos/ryu/apps/tidal-hifi.nix b/nixos/ryu/apps/tidal-hifi.nix new file mode 100644 index 0000000..469a387 --- /dev/null +++ b/nixos/ryu/apps/tidal-hifi.nix @@ -0,0 +1,3 @@ +{pkgs, ...}: { + environment.systemPackages = [pkgs.tidal-hifi]; +}