marleyos/modules/home/option-inheritance.nix
punkfairie 106b0d752e
feat: wrap all config in config = {}
To make it easier to add other top level attrsets if needed
2025-05-26 13:29:52 -07:00

15 lines
256 B
Nix

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