marleyos/modules/home/option-inheritance.nix
2025-05-25 20:06:03 -07:00

13 lines
218 B
Nix

{osConfig, ...}: let
cfg = osConfig.marleycfg;
in {
marleycfg = {
profiles = {
inherit (cfg.profiles) desktop server;
};
my = {
inherit (cfg.my) name fullName username email;
};
};
}