marleyos/modules/home/option-inheritance.nix

13 lines
216 B
Nix

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