mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
users/foo-dogsquared/setups/business: init
This commit is contained in:
parent
d5a332b72e
commit
8618d3145e
@ -70,6 +70,7 @@ in
|
||||
services.backup.enable = true;
|
||||
|
||||
setups = {
|
||||
business.enable = true;
|
||||
desktop.enable = true;
|
||||
development.enable = true;
|
||||
fonts.enable = true;
|
||||
|
@ -17,6 +17,7 @@
|
||||
./programs/vs-code.nix
|
||||
./services/backup
|
||||
|
||||
./setups/business.nix
|
||||
./setups/desktop.nix
|
||||
./setups/development.nix
|
||||
./setups/fonts.nix
|
||||
|
@ -0,0 +1,19 @@
|
||||
{ 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user