1
Files
flake-nixinator/home/christoph/nixinator/default.nix
2022-08-08 23:36:18 +02:00

41 lines
724 B
Nix

{ inputs, hostname, username, lib, mylib, config, nixosConfig, pkgs, ... }:
# Here goes the stuff that will only be enabled on the desktop
rec {
imports = [
../../../modules
];
modules.audio = {
enable = true;
carla.enable = true;
bitwig.enable = false;
bottles.enable = true;
yabridge.enable = true;
yabridge.autoSync = true;
extraPackages = with pkgs; [ audacity vcv-rack ];
};
modules.gaming = {
enable = true;
discordChromium.enable = true;
polymc.enable = true;
bottles.enable = true;
noisetorch = {
enable = true;
autostart = true;
};
steam = {
enable = true;
protonGE = true;
gamescope = true;
};
};
}