Add tidal module
Tweak vscode settings
This commit is contained in:
parent
778208078c
commit
ed259d06cf
3 changed files with 15 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
inputs.home-manager.nixosModules.home-manager
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
"${flake}/modules/nixos/lanzaboote.nix"
|
||||
"${flake}/modules/tidal.nix"
|
||||
];
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
|
3
home.nix
3
home.nix
|
@ -135,6 +135,9 @@
|
|||
"nix.enableLanguageServer" = true;
|
||||
"nix.serverPath" = lib.getExe pkgs.nil;
|
||||
"terminal.integrated.defaultProfile.linux" = "fish";
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
"explorer.confirmPasteNative" = false;
|
||||
"explorer.confirmDelete" = false;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
11
modules/tidal.nix
Normal file
11
modules/tidal.nix
Normal 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" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue