mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
12 lines
357 B
Nix
12 lines
357 B
Nix
{
|
|
# We import all of the roles here, with the type checks being handled
|
|
# in the individual files each time. This is a bit ugly, but necessary
|
|
# as NixOS doesn't support optional imports, due to circual imports
|
|
# (there might be a change of the config value inside one of the
|
|
# imported files).
|
|
imports = [
|
|
./workstation
|
|
./laptop
|
|
];
|
|
}
|