Benjamin Bädorf
edddd9dc80
All checks were successful
continuous-integration/drone/push Build is passing
18 lines
352 B
Nix
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
|
|
};
|
|
}
|