nixdots/system/roles/default.nix

12 lines
357 B
Nix
Raw Normal View History

2024-04-13 18:10:01 +00:00
{
2024-04-13 19:15:25 +00:00
# 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).
2024-04-13 18:10:01 +00:00
imports = [
./workstation
2024-04-13 18:56:51 +00:00
./laptop
2024-04-13 18:10:01 +00:00
];
}