17 lines
307 B
Nix
17 lines
307 B
Nix
{
|
|
flake.nixosModules = {
|
|
common = {
|
|
imports = [ ./common.nix ];
|
|
};
|
|
personalComputer = {
|
|
imports = [ ./personal-computer ];
|
|
};
|
|
think-gtcm = {
|
|
imports = [ ./think-gtcm.nix ];
|
|
};
|
|
think-backend-gtcm = {
|
|
imports = [ ./think-backend-gtcm.nix ];
|
|
};
|
|
};
|
|
}
|