1
Files
flake-nixinator/home/christoph/nixtop/default.nix
2022-08-10 21:38:17 +02:00

23 lines
466 B
Nix

{ inputs, hostname, username, lib, mylib, config, nixosConfig, pkgs, ... }:
# Here goes the stuff that will only be enabled on the laptop
rec {
imports = [
../../../modules
];
# TODO: Validate that this doesn't install too much
modules.gaming = {
enable = true;
discordChromium.enable = true;
};
modules.audio = {
enable = true;
noisesuppression = {
noisetorch.enable = true;
noisetorch.autostart = true;
};
};
}