teutat3s
cc35703d17
to specify it explicitly (results in double entry in nix.conf)
Also force our nix.extraOptions because digga tries real hard to put
their binary caches there:
0595ae70cd/modules/nix-config.nix (L19-L23)
19 lines
394 B
Nix
19 lines
394 B
Nix
{
|
|
self,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) fileContents;
|
|
in {
|
|
config = {
|
|
pub-solar.audio.mopidy.enable = true;
|
|
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
|
|
};
|
|
}
|