diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix new file mode 100644 index 00000000..3efa8bf8 --- /dev/null +++ b/home/christoph/nixinator/default.nix @@ -0,0 +1,21 @@ +{ inputs, hostname, username, lib, mylib, config, nixosConfig, pkgs, ... }: + +rec { + imports = [ + ../../../modules + ]; + + modules.audio = { + enable = true; + + # TODO: Remove the config link when disabled + carla.enable = true; + bitwig.enable = false; + yabridge.enable = true; + yabridge.autoSync = true; + + extraPackages = with pkgs; [ audacity vcv-rack ]; + }; + + modules.gaming = {}; +} diff --git a/home/christoph/nixtop/default.nix b/home/christoph/nixtop/default.nix new file mode 100644 index 00000000..5f0ed30e --- /dev/null +++ b/home/christoph/nixtop/default.nix @@ -0,0 +1,8 @@ +{ inputs, hostname, username, lib, mylib, config, nixosConfig, pkgs, ... }: + +rec { + imports = [ + ../../../modules + ]; + +} \ No newline at end of file