os/profiles/full-install/default.nix
teutat3s e2614c54f2
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
cachix: default binary cache is nixos.org, no need
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)
2023-03-27 18:08:01 +02:00

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
};
}