mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
20 lines
363 B
Nix
20 lines
363 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
userCfg = config.users.foo-dogsquared;
|
|
cfg = userCfg.setups.business;
|
|
in
|
|
{
|
|
options.users.foo-dogsquared.setups.business.enable =
|
|
lib.mkEnableOption "business setup";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
collabora-online
|
|
libreoffice-fresh
|
|
zoom-us
|
|
teams
|
|
];
|
|
};
|
|
}
|