trying to get main config to run

This commit is contained in:
christoph.hollizeck 2024-03-26 18:48:58 +01:00
parent 208e4947a5
commit 55f7c8296f
7 changed files with 117 additions and 27 deletions

View file

@ -10,6 +10,12 @@ in
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
noisetorch
];
programs.noisetorch.enable = true;
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
@ -20,5 +26,7 @@ in
alsa.support32Bit = true;
pulse.enable = true;
};
};
}