Add tidal

This commit is contained in:
caem 2025-01-28 00:35:18 +01:00
parent 36b106304d
commit 5c60d76735
Signed by: caem
GPG key ID: 69A830D03203405F
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{ lib, ... }:
{
imports = lib.getModuleImports ./.;
}

View file

@ -0,0 +1,13 @@
{ pkgs, username, ... }:
{
environment.systemPackages = with pkgs; [
tidal-hifi
];
environment.persistence."/nix/persist" = {
users."${username}".directories = [
".config/tidal-hifi"
];
};
}