1

add host specific config for user christoph

This commit is contained in:
2022-08-08 20:20:46 +02:00
parent 91258d3f0d
commit 5a5a5858dc
2 changed files with 29 additions and 0 deletions

View File

@ -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 = {};
}

View File

@ -0,0 +1,8 @@
{ inputs, hostname, username, lib, mylib, config, nixosConfig, pkgs, ... }:
rec {
imports = [
../../../modules
];
}