os/profiles/full-install/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
394 B
Nix
Raw Permalink Normal View History

2021-10-24 20:55:28 +00:00
{
2022-11-20 22:28:23 +00:00
self,
config,
lib,
pkgs,
2021-10-24 20:55:28 +00:00
...
2022-11-20 22:28:23 +00:00
}: let
2021-10-24 20:55:28 +00:00
inherit (lib) fileContents;
2022-11-20 22:28:23 +00:00
in {
2021-10-24 20:55:28 +00:00
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
};
}