mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 18:18:59 +00:00
14 lines
323 B
Nix
14 lines
323 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 zoom-us ];
|
|
};
|
|
}
|