From 5a5a5858dcebb0a06b5f8b8f00c46afe19865125 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Mon, 8 Aug 2022 20:20:46 +0200 Subject: [PATCH] add host specific config for user christoph --- home/christoph/nixinator/default.nix | 21 +++++++++++++++++++++ home/christoph/nixtop/default.nix | 8 ++++++++ 2 files changed, 29 insertions(+) create mode 100644 home/christoph/nixinator/default.nix create mode 100644 home/christoph/nixtop/default.nix 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