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

17 lines
293 B
Nix

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