20 lines
310 B
Nix
20 lines
310 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.profiles.productivity;
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
../../modules
|
|
];
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
homeModules.desktop = {
|
|
productivity = {
|
|
obsidian.enable = true;
|
|
zathura.enable = true;
|
|
office.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|