2025-11-17 12:12:17 -05:00
|
|
|
{ lib, role, ... }:
|
2024-10-31 22:56:43 -04:00
|
|
|
{
|
2025-10-31 17:07:59 -04:00
|
|
|
imports =
|
2025-11-17 12:12:17 -05:00
|
|
|
[
|
|
|
|
|
./common.nix
|
|
|
|
|
./darwin.nix
|
|
|
|
|
./linux.nix
|
|
|
|
|
]
|
|
|
|
|
++ lib.optional (role == "workstation") ./workstation.nix
|
|
|
|
|
++ lib.optional (role == "server") ./server.nix;
|
|
|
|
|
}
|