os/profiles/full-install/default.nix
Benjamin Bädorf edddd9dc80
All checks were successful
continuous-integration/drone/push Build is passing
fix: audio stack; disable mopidy by default, enable jack and wireplumber
2023-08-09 14:19:55 +02:00

18 lines
352 B
Nix

{
self,
config,
lib,
pkgs,
...
}: let
inherit (lib) fileContents;
in {
config = {
pub-solar.audio.bluetooth.enable = true;
pub-solar.docker.enable = true;
pub-solar.nextcloud.enable = true;
pub-solar.office.enable = true;
# pub-solar.printing.enable = true; # this is enabled automatically if office is enabled
};
}