Add tidal module

Tweak vscode settings
This commit is contained in:
Pim Kunis 2024-10-25 14:30:53 +02:00
parent 778208078c
commit ed259d06cf
3 changed files with 15 additions and 0 deletions

11
modules/tidal.nix Normal file
View file

@ -0,0 +1,11 @@
{ ... }: {
config = {
home-manager.users.pim.imports = [({ pkgs, ... }: {
home.packages = with pkgs; [
supercollider-with-sc3-plugins
];
})];
users.users.pim.extraGroups = [ "audio" ];
};
}