add onlyoffice
This commit is contained in:
parent
981009eca0
commit
0742ad8035
1 changed files with 17 additions and 0 deletions
17
modules/work/onlyoffice/default.nix
Normal file
17
modules/work/onlyoffice/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
# i wonder what the difference is
|
||||
{ outputs, options, config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.work.onlyoffice;
|
||||
in
|
||||
{
|
||||
options.modules.work.onlyoffice = {
|
||||
enable = mkEnableOption false;
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
users.users.sako.packages = with pkgs; [
|
||||
onlyoffice-bin
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue