feat(libreoffice): add libreoffice package
This commit is contained in:
parent
46337a3aed
commit
c53b5395f7
9
home/libreoffice/home.nix
Normal file
9
home/libreoffice/home.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs
|
||||||
|
, lib
|
||||||
|
, config
|
||||||
|
, ... }: with lib; let
|
||||||
|
cfg = config.passthrough.libreoffice;
|
||||||
|
enable = cfg.enable && (cfg.allUsers || (config.home.username == "app"));
|
||||||
|
in mkIf enable {
|
||||||
|
home.packages = with pkgs; [ libreoffice ];
|
||||||
|
}
|
22
home/libreoffice/nixos.nix
Normal file
22
home/libreoffice/nixos.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ pkgs
|
||||||
|
, lib
|
||||||
|
, config
|
||||||
|
, ... }: with lib; let
|
||||||
|
cfg = config.home.libreoffice;
|
||||||
|
persist = [ ".config/libreoffice" ];
|
||||||
|
in {
|
||||||
|
options.home.libreoffice = {
|
||||||
|
enable = mkEnableOption "open source office suite";
|
||||||
|
allUsers = mkEnableOption "set up for all users";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = {
|
||||||
|
users.homeModules = [
|
||||||
|
# this module passes minecraft configuration to home-manager
|
||||||
|
{ passthrough.libreoffice = cfg; }
|
||||||
|
];
|
||||||
|
|
||||||
|
users.home.persist.directories = with cfg; mkIf (enable && allUsers) persist;
|
||||||
|
users.home.persistApp.directories = with cfg; mkIf (enable && !allUsers) persist;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue