feat(configurations): add darwin config support
This commit is contained in:
parent
c21f7efecd
commit
9cb4542b05
4 changed files with 14 additions and 3 deletions
|
@ -74,9 +74,12 @@ in
|
|||
type = lazyAttrsOf userOpts;
|
||||
default = { };
|
||||
};
|
||||
hosts = mkOption {
|
||||
# hosts.nixos, hosts.darwin, etc.
|
||||
type = lazyAttrsOf (lazyAttrsOf hostOpts);
|
||||
hosts.nixos = mkOption {
|
||||
type = lazyAttrsOf hostOpts;
|
||||
default = { };
|
||||
};
|
||||
hosts.darwin = mkOption {
|
||||
type = lazyAttrsOf raw;
|
||||
default = { };
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue