mirror of
https://github.com/dolphin-emu/sadm
synced 2025-10-05 15:52:43 +02:00
13 lines
165 B
Nix
13 lines
165 B
Nix
# Passed to NixOS modules as "my".
|
|
rec {
|
|
common = import ./common;
|
|
roles = import ./roles;
|
|
|
|
modules = {
|
|
imports = [
|
|
common
|
|
roles
|
|
];
|
|
};
|
|
}
|